[Python-checkins] python/dist/src/Doc/perl python.perl,1.139,1.140

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Thu Sep 4 15:25:07 EDT 2003


Update of /cvsroot/python/python/dist/src/Doc/perl
In directory sc8-pr-cvs1:/tmp/cvs-serv7163

Modified Files:
	python.perl 
Log Message:
make sure cells are really generated for all table cells, even those
that are left empty
fixes first of the problems reported in SF bug #727692


Index: python.perl
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/perl/python.perl,v
retrieving revision 1.139
retrieving revision 1.140
diff -C2 -d -r1.139 -r1.140
*** python.perl	5 Aug 2003 05:00:23 -0000	1.139
--- python.perl	4 Sep 2003 21:25:03 -0000	1.140
***************
*** 1407,1410 ****
--- 1407,1411 ----
      s/[\s\n]+//;
      my($sfont, $efont) = get_table_col1_fonts();
+     $c1 = ' ' if ($c1 eq '');
      $c2 = ' ' if ($c2 eq '');
      my($c1align, $c2align) = split('\|', $aligns);
***************
*** 1458,1461 ****
--- 1459,1464 ----
      s/[\s\n]+//;
      my($sfont, $efont) = get_table_col1_fonts();
+     $c1 = ' ' if ($c1 eq '');
+     $c2 = ' ' if ($c2 eq '');
      $c3 = ' ' if ($c3 eq '');
      my($c1align, $c2align, $c3align) = split('\|', $aligns);
***************
*** 1514,1517 ****
--- 1517,1523 ----
      s/[\s\n]+//;
      my($sfont, $efont) = get_table_col1_fonts();
+     $c1 = ' ' if ($c1 eq '');
+     $c2 = ' ' if ($c2 eq '');
+     $c3 = ' ' if ($c3 eq '');
      $c4 = ' ' if ($c4 eq '');
      my($c1align, $c2align, $c3align, $c4align) = split('\|', $aligns);
***************
*** 1575,1578 ****
--- 1581,1588 ----
      s/[\s\n]+//;
      my($sfont, $efont) = get_table_col1_fonts();
+     $c1 = ' ' if ($c1 eq '');
+     $c2 = ' ' if ($c2 eq '');
+     $c3 = ' ' if ($c3 eq '');
+     $c4 = ' ' if ($c4 eq '');
      $c5 = ' ' if ($c5 eq '');
      my($c1align, $c2align, $c3align, $c4align, $c5align) = split('\|',$aligns);





More information about the Python-checkins mailing list