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:
@@ -318,6 +318,8 @@ int yylex()
|
||||
c = '\n';
|
||||
else if (c == 'r')
|
||||
c = '\r';
|
||||
else if (c == 't')
|
||||
c = '\t';
|
||||
*b++ = c;
|
||||
notkeyword = 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user