diff options
author | Christian Hesse <mail@eworm.de> | 2023-06-26 21:17:42 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2023-06-27 09:14:36 +0200 |
commit | 3bdaf6e45d6f7d0edf573e0c756b5778e18d8ac1 (patch) | |
tree | 8deddf42f66357aa09cc5b04f048e078666b8f99 /global-functions.rsc | |
parent | 640b8fd401eae8ff90bfcbb13f683326f522eabe (diff) | |
parent | cc5820ed90a349a5a607dd93ea54d41e214308e0 (diff) |
Merge branch 'no-escape-question-mark' into next
Diffstat (limited to 'global-functions.rsc')
-rw-r--r-- | global-functions.rsc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/global-functions.rsc b/global-functions.rsc index b8da30b..1f1cfa1 100644 --- a/global-functions.rsc +++ b/global-functions.rsc @@ -321,7 +321,7 @@ } :local Return ""; - :local Chars ("^.[]\$()|*+\?{}\\"); + :local Chars ("^.[]\$()|*+?{}\\"); :for I from=0 to=([ :len $Input ] - 1) do={ :local Char [ :pick $Input $I ]; @@ -942,7 +942,7 @@ /system/script/run global-config; } on-error={ $LogPrintExit2 error $0 ("Reloading global configuration failed!" . \ - " Syntax error or missing overlay\?") false; + " Syntax error or missing overlay?") false; } } @@ -1251,7 +1251,7 @@ } :local Return ""; - :local Chars ("\n\r !\"#\$%&'()*+,:;<=>\?@[\\]^`{|}~"); + :local Chars ("\n\r !\"#\$%&'()*+,:;<=>?@[\\]^`{|}~"); :local Subs { "%0A"; "%0D"; "%20"; "%21"; "%22"; "%23"; "%24"; "%25"; "%26"; "%27"; "%28"; "%29"; "%2A"; "%2B"; "%2C"; "%3A"; "%3B"; "%3C"; "%3D"; "%3E"; "%3F"; "%40"; "%5B"; "%5C"; "%5D"; "%5E"; "%60"; "%7B"; "%7C"; "%7D"; "%7E" }; |