make %Z escape "

R=ken
OCL=18180
CL=18180
This commit is contained in:
Russ Cox 2008-10-30 15:35:56 -07:00
parent f2b1536328
commit dc6bd11ce8
1 changed files with 4 additions and 0 deletions

View File

@ -1360,6 +1360,10 @@ loop:
*p++ = '\\';
*p++ = 'n';
break;
case '\"':
*p++ = '\\';
*p++ = c;
break;
}
goto loop;