]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
do_cmd_moreargs(),
authorFred Drake <fdrake@acm.org>
Thu, 3 Aug 2000 17:25:44 +0000 (17:25 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 3 Aug 2000 17:25:44 +0000 (17:25 +0000)
do_cmd_unspecified():  New functions to reflect previously unused markup.

do_cmd_file():  Simplified generated markup to only make use of the
existing stylesheet.

do_cmd_makevar():  Make the markup more stylesheet-friendly.

Doc/perl/python.perl

index 6c0cddbb1d95dbae288a6cc2418563b68499ceba..eb5c7c4739753b3de236f40f3ffe70e925124794 100644 (file)
@@ -122,7 +122,8 @@ sub do_cmd_optional{
 # \file and \samp are at the end of this file since they screw up fontlock.
 
 sub do_cmd_pytype{ return @_[0]; }
-sub do_cmd_makevar{ return @_[0]; }
+sub do_cmd_makevar{
+    return use_wrappers(@_[0], '<span class="makevar">', '</span>'); }
 sub do_cmd_code{
     return use_wrappers(@_[0], '<code>', '</code>'); }
 sub do_cmd_module{
@@ -169,9 +170,7 @@ sub do_cmd_dfn{
 sub do_cmd_emph{
     return use_italics(@_); }
 sub do_cmd_file{
-    return use_wrappers(@_[0],
-                        '<font class="file" face="sans-serif">',
-                        '</font>'); }
+    return use_wrappers(@_[0], '<span class="file">', '</span>'); }
 sub do_cmd_filenq{
     return do_cmd_file(@_[0]); }
 sub do_cmd_samp{
@@ -185,6 +184,11 @@ sub do_cmd_textbf{
 sub do_cmd_textit{
     return use_wrappers(@_[0], '<i>', '</i>'); }
 
+sub do_cmd_moreargs{
+    return '...' . @_[0]; }
+sub do_cmd_unspecified{
+    return '...' . @_[0]; }
+
 
 sub do_cmd_refmodule{
     # Insert the right magic to jump to the module definition.