From: Martin Mares Date: Sat, 27 Mar 2010 20:16:36 +0000 (+0100) Subject: mop: mo-score uses at least a single space in every column X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=ecad15c02b1e1f64cd866016c50b172409e25b9f;p=eval.git mop: mo-score uses at least a single space in every column (otherwise the `column' utility does not count the particular column) --- diff --git a/mop/eval/mo-score.sh b/mop/eval/mo-score.sh index d651f18..b893d76 100755 --- a/mop/eval/mo-score.sh +++ b/mop/eval/mo-score.sh @@ -187,7 +187,7 @@ while ($i < @table) { } else { ${table[$j]}[0] = $j+1 . ".-" . $i . "."; $j++; - while ($j < $i) { ${table[$j++]}[0] = ""; }; + while ($j < $i) { ${table[$j++]}[0] = " "; }; } } print STDERR "OK\n";