diff --git a/Docs/Support/colspec-fix.pl b/Docs/Support/colspec-fix.pl index 48913d6d638..21abb90fef9 100755 --- a/Docs/Support/colspec-fix.pl +++ b/Docs/Support/colspec-fix.pl @@ -4,6 +4,8 @@ # Script to rewrite colspecs from relative values to absolute values # +# arjen 2002-03-14 append "cm" specifier to colwidth field. + use strict; my $table_width = 12.75; # cm @@ -43,7 +45,7 @@ sub rel2abs { my $unit = ($table_width - ($#widths * $gutter_width)) / ($total); foreach (@widths) { - $output .= $ws . '' . "\n"; + $output .= $ws . '' . "\n"; } return $output . "\n$ws";