Commit dc6bd11c authored by Russ Cox's avatar Russ Cox

make %Z escape "

R=ken
OCL=18180
CL=18180
parent f2b15363
......@@ -1360,6 +1360,10 @@ loop:
*p++ = '\\';
*p++ = 'n';
break;
case '\"':
*p++ = '\\';
*p++ = c;
break;
}
goto loop;
......
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