summaryrefslogtreecommitdiff
path: root/cli/source.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/source.cxx')
-rw-r--r--cli/source.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/cli/source.cxx b/cli/source.cxx
index c5d47f0..1e01072 100644
--- a/cli/source.cxx
+++ b/cli/source.cxx
@@ -312,7 +312,11 @@ namespace
if (d[i] == ' ' || d[i] == '\n')
e = i;
- if (d[i] == '\n' || i - b == 79 - length_)
+ // Assume we have 78 characters instead of 79 per line to make
+ // sure we get the same output on Windows (which has two character
+ // for a newline).
+ //
+ if (d[i] == '\n' || i - b == 78 - length_)
{
if (b != 0)
{