diff options
author | Raúl Benencia <rul@kalgan.cc> | 2013-09-03 15:24:40 -0300 |
---|---|---|
committer | Raúl Benencia <rul@kalgan.cc> | 2013-09-03 15:24:40 -0300 |
commit | de8bde7be0a8ab99dbbf5cdbf6e5fc7fc582da01 (patch) | |
tree | a752ee80ed061fcf4ab49fe6d2a98c6f0af27af7 /Print.hs | |
parent | fc7a8483f4a66a3f47bbb335574a399df64d62e0 (diff) |
Solved row overflow bug
Diffstat (limited to 'Print.hs')
-rw-r--r-- | Print.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ ppFlag FORWARDED = 'P' ppFlag DELETED = 'T' ppFlag (OTHERFLAG [c]) = c -ppSep = "\t" +ppSep = " " normalizeLen len cs = if (length cs > len) then shorten len cs |