Fix wrong escape (#7952)

;-)

Assuming you want it to show up as `'\'`, anyway.
pull/7958/head
Frans de Jonge 3 years ago committed by GitHub
parent ca91df1f87
commit 86a1552ccd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -58,7 +58,7 @@ Complex expressions may lead to an extremely long search time, in which case not
]] ]]
local SRELL_ERROR_CODES = {} local SRELL_ERROR_CODES = {}
SRELL_ERROR_CODES[102] = _("Wrong escape '\'") SRELL_ERROR_CODES[102] = _("Wrong escape '\\'")
SRELL_ERROR_CODES[103] = _("Back reference does not exist.") SRELL_ERROR_CODES[103] = _("Back reference does not exist.")
SRELL_ERROR_CODES[104] = _("Mismatching brackets '[]'") SRELL_ERROR_CODES[104] = _("Mismatching brackets '[]'")
SRELL_ERROR_CODES[105] = _("Mismatched parens '()'") SRELL_ERROR_CODES[105] = _("Mismatched parens '()'")

Loading…
Cancel
Save