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:
he 2007-10-25 14:40:33 +00:00
parent a2c7664889
commit c6b19d4d1d
1 changed files with 1 additions and 0 deletions

1
dist/nawk/lex.c vendored
View File

@ -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;