2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Handle \t escape sequence.

Patch from Alexey Nikitin.


[SVN r66412]
This commit is contained in:
Vladimir Prus
2010-11-06 15:31:12 +00:00
parent d3fbe75433
commit dde481ec52

View File

@@ -318,6 +318,8 @@ int yylex()
c = '\n';
else if (c == 'r')
c = '\r';
else if (c == 't')
c = '\t';
*b++ = c;
notkeyword = 1;
}