From 38178fd951a2b213c0ae83c2bf98e6ee051436b5 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 22 Sep 2000 17:05:04 +0000 Subject: use_sans_serif(), use_italics(): Remove both functions, inlining use_italics() at its only call site. init_myformat(): Uncomment line so that some internal markup does not get generated, since it is not properly removed later. (Fix on aspect of SourceForge bug #114749.) Modified call to process_commands_wrap_deferred(), removing \code from the list since it had a bad interaction with other changes in some contexts. --- Doc/perl/python.perl | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 45c19ba..ae0d7b1 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -110,13 +110,6 @@ sub use_wrappers{ return $before . $stuff . $after . $_; } -sub use_sans_serif{ - return use_wrappers(@_[0], '', ''); -} -sub use_italics{ - return use_wrappers(@_[0], '', ''); -} - $IN_DESC_HANDLER = 0; sub do_cmd_optional{ if ($IN_DESC_HANDLER) { @@ -182,7 +175,7 @@ sub do_cmd_var{ sub do_cmd_dfn{ return use_wrappers(@_[0], '', ''); } sub do_cmd_emph{ - return use_italics(@_); } + return use_wrappers(@_[0], '', ''); } sub do_cmd_file{ return use_wrappers(@_[0], '', ''); } sub do_cmd_filenq{ @@ -618,7 +611,7 @@ sub idx_cmd_refstmodindex{ return ref_module_index_helper('standard', @_); } sub do_cmd_nodename{ return do_cmd_label(@_); } sub init_myformat{ -# $anchor_invisible_mark = ''; + $anchor_invisible_mark = ''; $anchor_mark = ''; $icons{'anchor_mark'} = ''; } @@ -1531,8 +1524,12 @@ sub do_cmd_term{ } +# I don't recall exactly why this was needed, but it was very much needed. +# We'll see if anything breaks when I move the "code" line out -- some +# things broke with it in. + +#code # {} process_commands_wrap_deferred(<<_RAW_ARG_DEFERRED_CMDS_); -code # {} declaremodule # [] # {} # {} memberline # [] # {} methodline # [] # {} # {} -- cgit v0.12