Commit 57804f1d authored by Russ Cox's avatar Russ Cox

escape \ in %Z

R=ken
OCL=18202
CL=18202
parent 4958d41d
...@@ -1361,6 +1361,7 @@ loop: ...@@ -1361,6 +1361,7 @@ loop:
*p++ = 'n'; *p++ = 'n';
break; break;
case '\"': case '\"':
case '\\':
*p++ = '\\'; *p++ = '\\';
*p++ = c; *p++ = c;
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment