From: Fred Drake Date: Wed, 9 Aug 2000 13:45:04 +0000 (+0000) Subject: fix_font(): Handle one more case for the magical first column of tables. X-Git-Tag: v2.0b1~532 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cb0fc9c2cef0b71d48cf92138fc130f87da7dd88;p=thirdparty%2FPython%2Fcpython.git fix_font(): Handle one more case for the magical first column of tables. --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index eb5c7c473975..b1eb008cbed7 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -950,6 +950,9 @@ sub fix_font{ elsif ($font eq 'constant') { $font = 'tt class="constant"'; } + elsif ($font eq 'kbd') { + $font = 'kbd'; + } return $font; }