summaryrefslogtreecommitdiff
path: root/core/string
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-11-14 23:24:35 +0100
committerRémi Verschelde <rverschelde@gmail.com>2022-11-14 23:24:35 +0100
commit19592847696f253175ed1f0ad1db3798b46bd8c9 (patch)
treee69567a3fd072f01bd0050bb98f3a60a7c865915 /core/string
parent0dbb632116fb934902939ce66bfac0d71a980dd8 (diff)
parent521d8a5d24f2341d814147ad0d659e3a8704c48d (diff)
Merge pull request #68229 from Mickeon/c-escape-hell
Remove "?" from String.c_escape()
Diffstat (limited to 'core/string')
-rw-r--r--core/string/ustring.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/string/ustring.cpp b/core/string/ustring.cpp
index d0d7b613ef..8993f9667d 100644
--- a/core/string/ustring.cpp
+++ b/core/string/ustring.cpp
@@ -3922,7 +3922,6 @@ String String::c_unescape() const {
escaped = escaped.replace("\\v", "\v");
escaped = escaped.replace("\\'", "\'");
escaped = escaped.replace("\\\"", "\"");
- escaped = escaped.replace("\\?", "\?");
escaped = escaped.replace("\\\\", "\\");
return escaped;
@@ -3939,7 +3938,6 @@ String String::c_escape() const {
escaped = escaped.replace("\t", "\\t");
escaped = escaped.replace("\v", "\\v");
escaped = escaped.replace("\'", "\\'");
- escaped = escaped.replace("\?", "\\?");
escaped = escaped.replace("\"", "\\\"");
return escaped;