diff options
-rw-r--r-- | libbutl/string-parser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/string-parser.cxx b/libbutl/string-parser.cxx index aea1338..af5c1b3 100644 --- a/libbutl/string-parser.cxx +++ b/libbutl/string-parser.cxx @@ -14,7 +14,7 @@ namespace butl inline static bool space (char c) noexcept { - return c == ' ' || c == '\t'; + return c == ' ' || c == '\t' || c == '\n' || c == '\r'; } vector<pair<string, size_t>> |