diff options
author | Fred Drake <fdrake@acm.org> | 2001-06-23 03:13:30 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-06-23 03:13:30 (GMT) |
commit | 6fe4660f6131b03a09652ff6147818082607d226 (patch) | |
tree | 0cf87d383ead27602824b67e98fe4eb08f44ca32 /Doc | |
parent | 5445e5e3051000121a967da914f2b2150776656b (diff) | |
download | cpython-6fe4660f6131b03a09652ff6147818082607d226.zip cpython-6fe4660f6131b03a09652ff6147818082607d226.tar.gz cpython-6fe4660f6131b03a09652ff6147818082607d226.tar.bz2 |
Added support for our new \infinity and \plusminus macros, and the
standard \textbar macro (not supported in many versions of LaTeX2HTML).
Added newline to error message.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/perl/python.perl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 4431ec7..de27a2d 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -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{ '∞' . @_[0]; } +sub do_cmd_plusminus{ '±' . @_[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"; } } } |