diff options
-rw-r--r-- | misc.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -50,9 +50,8 @@ collapse_continuations (line) return; out = in; - if (out > line) - while (out[-1] == '\\') - --out; + while (out > line && out[-1] == '\\') + --out; while (*in != '\0') { |