diff options
author | Fred Drake <fdrake@acm.org> | 1998-04-11 20:53:03 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-04-11 20:53:03 (GMT) |
commit | ee60191d1d318684a896794faad9ccbcfe9bd254 (patch) | |
tree | 6f56860916156f1d59f0f8159e55882648a8d9ad /Doc/perl/python.perl | |
parent | 17e564042d8eccfd571ef898709d1454727741be (diff) | |
download | cpython-ee60191d1d318684a896794faad9ccbcfe9bd254.zip cpython-ee60191d1d318684a896794faad9ccbcfe9bd254.tar.gz cpython-ee60191d1d318684a896794faad9ccbcfe9bd254.tar.bz2 |
Lighten up tables.
Diffstat (limited to 'Doc/perl/python.perl')
-rw-r--r-- | Doc/perl/python.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 300ac18..d37aab1 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -720,7 +720,7 @@ sub do_env_memberdescni{ sub setup_column_alignments{ local($_) = @_; - my($j1,$a1,$a2,$a3,$j4) = split(/[|]/,$_); + my($a1,$a2,$a3) = split(/[|]/,$_); my($th1,$th2,$th3) = ('<th>', '<th>', '<th>'); $col_aligns[0] = (($a1 eq "c") ? "<td align=center>" : "<td>"); $col_aligns[1] = (($a2 eq "c") ? "<td align=center>" : "<td>"); |