From c7c8d4693e41fac2511db3e301e9282728a6d8f5 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Tue, 25 Jun 2013 14:50:35 -0400 Subject: [PATCH] parser: note PR13371 in eschewing \FOO processing during lexing. --- parse.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/parse.cxx b/parse.cxx index afee87b08..be1150f60 100644 --- a/parse.cxx +++ b/parse.cxx @@ -1633,7 +1633,8 @@ skip: case '\\': // Pass these escapes through to the string value // being parsed; it will be emitted into a C literal. - + // XXX: PR13371: perhaps we should evaluate them here + // (and re-quote them during translate.cxx emission). n->content.push_back('\\'); // fall through -- 2.43.5