[Python-checkins] CVS: python/dist/src/Doc/perl python.perl,1.103,1.104

Fred L. Drake fdrake@users.sourceforge.net
Fri, 22 Jun 2001 20:13:32 -0700


Update of /cvsroot/python/python/dist/src/Doc/perl
In directory usw-pr-cvs1:/tmp/cvs-serv21009/perl

Modified Files:
	python.perl 
Log Message:

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.


Index: python.perl
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/perl/python.perl,v
retrieving revision 1.103
retrieving revision 1.104
diff -C2 -r1.103 -r1.104
*** python.perl	2001/06/20 21:29:30	1.103
--- python.perl	2001/06/23 03:13:30	1.104
***************
*** 88,91 ****
--- 88,94 ----
  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]; }
  
  
***************
*** 1463,1467 ****
          }
          else {
!             print "\nsynopsis table $key has no file association";
          }
      }
--- 1466,1470 ----
          }
          else {
!             print "\nsynopsis table $key has no file association\n";
          }
      }