From: Fred Drake Date: Tue, 5 Mar 2002 04:04:06 +0000 (+0000) Subject: Add implementations for \textgreater and \textless, defined in (relatively) X-Git-Tag: v2.3c1~6575 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=58fb23794876c6b58fc3dc75e2a2b420b458d575;p=thirdparty%2FPython%2Fcpython.git Add implementations for \textgreater and \textless, defined in (relatively) recent versions of LaTeX2e but not support in LaTeX2HTML. --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 3b551390c7e8..8968df36ab79 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -88,6 +88,8 @@ sub do_cmd_let{ sub do_cmd_textasciitilde{ '~' . @_[0]; } sub do_cmd_textasciicircum{ '^' . @_[0]; } sub do_cmd_textbar{ '|' . @_[0]; } +sub do_cmd_textgreater{ '>' . @_[0]; } +sub do_cmd_textless{ '<' . @_[0]; } sub do_cmd_infinity{ '∞' . @_[0]; } sub do_cmd_plusminus{ '±' . @_[0]; } sub do_cmd_menuselection{ @_[0]; }