summaryrefslogtreecommitdiff
path: root/src/cparse
diff options
context:
space:
mode:
Diffstat (limited to 'src/cparse')
-rw-r--r--src/cparse/cparse_lex.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cparse/cparse_lex.l b/src/cparse/cparse_lex.l
index 1afe886..61c016f 100644
--- a/src/cparse/cparse_lex.l
+++ b/src/cparse/cparse_lex.l
@@ -158,8 +158,8 @@ set_ret_str()
}
<sQStr>\\. {
- char tmp[2] = { cparse_text[1], 0 };
- append_str(tmp);
+ /* this will consume the \" sequence */
+ append_str(cparse_text);
}
<sQStr>\n {