summaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 696ff6312..fdd17f0aa 100644
--- a/parse.y
+++ b/parse.y
@@ -5144,7 +5144,7 @@ parser_read_escape(struct parser_params *parser, int flags,
if (flags & ESCAPE_CONTROL) goto eof;
if ((c = nextc())== '\\') {
int tmp;
- c = read_escape(flags|ESCAPE_CONTROL, &tmp, &tmp, encp);
+ c = read_escape(flags|ESCAPE_CONTROL, has8bit, &tmp, encp);
}
else if (c == '?')
return 0177;