aboutsummaryrefslogtreecommitdiff
path: root/src/shared/Util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/Util.cpp')
-rw-r--r--src/shared/Util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/Util.cpp b/src/shared/Util.cpp
index 354568c778f..644769f2069 100644
--- a/src/shared/Util.cpp
+++ b/src/shared/Util.cpp
@@ -131,7 +131,7 @@ Tokens StrSplit(const std::string &src, const std::string &sep)
void stripLineInvisibleChars(std::string &str)
{
- static std::string invChars = " \t\7";
+ static std::string invChars = " \t\7\n";
size_t wpos = 0;