[Python-checkins] CVS: python/dist/src/Doc/perl python.perl,1.78,1.79

Fred L. Drake python-dev@python.org
Wed, 9 Aug 2000 06:45:08 -0700


Update of /cvsroot/python/python/dist/src/Doc/perl
In directory slayer.i.sourceforge.net:/tmp/cvs-serv15570/perl

Modified Files:
	python.perl 
Log Message:

fix_font():  Handle one more case for the magical first column of tables.


Index: python.perl
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/perl/python.perl,v
retrieving revision 1.78
retrieving revision 1.79
diff -C2 -r1.78 -r1.79
*** python.perl	2000/08/03 17:25:44	1.78
--- python.perl	2000/08/09 13:45:04	1.79
***************
*** 951,954 ****
--- 951,957 ----
          $font = 'tt class="constant"';
      }
+     elsif ($font eq 'kbd') {
+         $font = 'kbd';
+     }
      return $font;
  }