summaryrefslogtreecommitdiff
path: root/src/util/regexp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/regexp.cpp')
-rw-r--r--src/util/regexp.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/util/regexp.cpp b/src/util/regexp.cpp
index 24e894678..6bbdcb36a 100644
--- a/src/util/regexp.cpp
+++ b/src/util/regexp.cpp
@@ -117,9 +117,11 @@ std::string String::toString() const {
if(isprint( c )) {
if(c == '\\') {
str += "\\\\";
- } else if(c == '\"') {
- str += "\\\"";
- } else {
+ }
+ //else if(c == '\"') {
+ // str += "\\\"";
+ //}
+ else {
str += c;
}
} else {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback