summaryrefslogtreecommitdiffstats
path: root/src/linguist/shared/ts.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/linguist/shared/ts.cpp')
-rw-r--r--src/linguist/shared/ts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linguist/shared/ts.cpp b/src/linguist/shared/ts.cpp
index 5914319c9..153f9708b 100644
--- a/src/linguist/shared/ts.cpp
+++ b/src/linguist/shared/ts.cpp
@@ -464,7 +464,7 @@ static QString protect(const QString &str)
result += QLatin1String("'");
break;
default:
- if ((c < 0x20 || (ch > 0x7f && ch.isSpace())) && c != '\r' && c != '\n' && c != '\t')
+ if ((c < 0x20 || (ch > 0x7f && ch.isSpace())) && c != '\n' && c != '\t')
result += numericEntity(c);
else // this also covers surrogates
result += QChar(c);