diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-05-04 07:27:47 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-05-27 08:35:29 +0200 |
commit | a54abb2f4e5e66877619097bfd281261f99c5103 (patch) | |
tree | b10a24fd2c5d1d1dd2602f25cc7228b287200cbb /libbuild2/test/script | |
parent | e63b427c51e37135e50dec9435659d661872fe95 (diff) |
Add recognition for line-leading `%` as token
Diffstat (limited to 'libbuild2/test/script')
-rw-r--r-- | libbuild2/test/script/lexer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/test/script/lexer.cxx b/libbuild2/test/script/lexer.cxx index 26d77b5..4683bc7 100644 --- a/libbuild2/test/script/lexer.cxx +++ b/libbuild2/test/script/lexer.cxx @@ -174,7 +174,7 @@ namespace build2 token lexer:: next_line () { - bool sep (skip_spaces ()); + bool sep (skip_spaces ().first); xchar c (get ()); uint64_t ln (c.line), cn (c.column); |