summaryrefslogtreecommitdiff
path: root/read.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2012-09-01 07:52:54 +0000
committerEli Zaretskii <eliz@gnu.org>2012-09-01 07:52:54 +0000
commite95e4eed5b166550cf81bdf5125c19bd839f91f0 (patch)
treef50bb7579c83f0d477d9457cdb6372a710da7369 /read.c
parentfec87a7f5020100312b3c592d1a550495e163561 (diff)
downloadmake-e95e4eed5b166550cf81bdf5125c19bd839f91f0.tar.gz
Fix unescape_char when not unescaping.
read.c (unescape_char): Advance 'p' after copying the unescaped characters. Otherwise the backslashes are incorrectly erased from the original string.
Diffstat (limited to 'read.c')
-rw-r--r--read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/read.c b/read.c
index 33bf1195..f075ef50 100644
--- a/read.c
+++ b/read.c
@@ -2242,9 +2242,9 @@ unescape_char (char *string, int c)
/* It is, and there's >1 backslash. Take half of them. */
l /= 2;
memcpy (p, s, l);
- p += l;
}
s = e;
+ p += l;
}
*(p++) = *(s++);