From: Fred Drake Date: Wed, 28 Jun 2000 21:06:08 +0000 (+0000) Subject: Support constant as a font name for the first column of a table using the X-Git-Tag: v2.0b1~1354 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7388f730a3e28696867e490ff12d0ea3153fad57;p=thirdparty%2FPython%2Fcpython.git Support constant as a font name for the first column of a table using the tableii & friends markup family. --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 8606ece970c9..6c0cddbb1d95 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -943,6 +943,9 @@ sub fix_font{ elsif ($font eq 'member') { $font = 'tt class="member"'; } + elsif ($font eq 'constant') { + $font = 'tt class="constant"'; + } return $font; }