]> granicus.if.org Git - python/commitdiff
Added support for our new \infinity and \plusminus macros, and the
authorFred Drake <fdrake@acm.org>
Sat, 23 Jun 2001 03:13:30 +0000 (03:13 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 23 Jun 2001 03:13:30 +0000 (03:13 +0000)
standard \textbar macro (not supported in many versions of LaTeX2HTML).

Added newline to error message.

Doc/perl/python.perl

index 4431ec712de6007b8b2695049e22643187d90ec1..de27a2d30e5fd40d0edfe37c3ee15f742ccec907 100644 (file)
@@ -87,6 +87,9 @@ sub do_cmd_let{
 
 sub do_cmd_textasciitilde{ '~' . @_[0]; }
 sub do_cmd_textasciicircum{ '^' . @_[0]; }
+sub do_cmd_textbar{ '|' . @_[0]; }
+sub do_cmd_infinity{ '&infin;' . @_[0]; }
+sub do_cmd_plusminus{ '&plusmn;' . @_[0]; }
 
 
 # words typeset in a special way (not in HTML though)
@@ -1462,7 +1465,7 @@ sub process_all_localmoduletables{
             process_localmoduletables_in_file($file);
         }
         else {
-            print "\nsynopsis table $key has no file association";
+            print "\nsynopsis table $key has no file association\n";
         }
     }
 }