summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/misc.c b/misc.c
index a7e9e71..88dfd60 100644
--- a/misc.c
+++ b/misc.c
@@ -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')
{