diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2022-10-14 12:21:31 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-10-14 17:30:12 +0300 |
commit | fbe94f38ee51e705202a2d5cf1f45b5e8a08d8c7 (patch) | |
tree | 3f1881370b61da5f217a6907e37ca1945387e50a /libbuild2 | |
parent | 74eea8fe332c05774f108c5094eb335e58f44cfa (diff) |
Make -w|--whitespace to be default for for-loop
Diffstat (limited to 'libbuild2')
-rw-r--r-- | libbuild2/script/parser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/script/parser.cxx b/libbuild2/script/parser.cxx index 7989c20..a2e0819 100644 --- a/libbuild2/script/parser.cxx +++ b/libbuild2/script/parser.cxx @@ -2521,7 +2521,7 @@ namespace build2 stream_reader sr ( move (in), pipe, - ops.whitespace (), ops.newline (), ops.exact (), + !ops.newline (), ops.newline (), ops.exact (), dl, deadline_cmd, ll); |