diff options
author | Eli Zaretskii <eliz@gnu.org> | 2012-09-01 07:52:54 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2012-09-01 07:52:54 +0000 |
commit | 6cb5be7813d4f7e9380929f900a6cbbb0e6756c6 (patch) | |
tree | f50bb7579c83f0d477d9457cdb6372a710da7369 | |
parent | adb50bd4c92424e7281156e118a687da1c8ebd7f (diff) | |
download | gunmake-6cb5be7813d4f7e9380929f900a6cbbb0e6756c6.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.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | read.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2012-09-01 Eli Zaretskii <eliz@gnu.org> + + * read.c (unescape_char): Advance 'p' after copying the unescaped + characters. Otherwise the backslashes are incorrectly erased from + the original string. + 2012-03-05 Paul Smith <psmith@gnu.org> Update copyright notices to use year ranges, as allowed by @@ -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++); |