Bring back the fix in revision 1.6, apparently accidentally lost
during last merge, to allow escape of a newline in string literals.
This commit is contained in:
parent
a2c7664889
commit
c6b19d4d1d
|
@ -392,6 +392,7 @@ int string(void)
|
|||
case '\\':
|
||||
c = input();
|
||||
switch (c) {
|
||||
case '\n': break;
|
||||
case '"': *bp++ = '"'; break;
|
||||
case 'n': *bp++ = '\n'; break;
|
||||
case 't': *bp++ = '\t'; break;
|
||||
|
|
Loading…
Reference in New Issue