[Python-checkins] python/dist/src/Doc/perl python.perl,1.161,1.162

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Sat Nov 13 02:20:28 CET 2004


Update of /cvsroot/python/python/dist/src/Doc/perl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32607

Modified Files:
	python.perl 
Log Message:
avoid the inane markup generated by LaTeX2HTML for \LaTeX; that simply
doesn't look right in HTML


Index: python.perl
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/perl/python.perl,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -d -r1.161 -r1.162
--- python.perl	11 Nov 2004 08:05:34 -0000	1.161
+++ python.perl	13 Nov 2004 01:20:24 -0000	1.162
@@ -106,8 +106,8 @@
 # words typeset in a special way (not in HTML though)
 
 sub do_cmd_ABC{ 'ABC' . $_[0]; }
-sub do_cmd_UNIX{ '<span class="Unix">Unix</span>'
-                 . $_[0]; }
+sub do_cmd_UNIX{ '<span class="Unix">Unix</span>' . $_[0]; }
+sub do_cmd_LaTeX{ '<span class="LaTeX">LaTeX</span>' . $_[0]; }
 sub do_cmd_ASCII{ 'ASCII' . $_[0]; }
 sub do_cmd_POSIX{ 'POSIX' . $_[0]; }
 sub do_cmd_C{ 'C' . $_[0]; }



More information about the Python-checkins mailing list