mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Fix wrong escape (#7952)
;-) Assuming you want it to show up as `'\'`, anyway.
This commit is contained in:
@@ -58,7 +58,7 @@ Complex expressions may lead to an extremely long search time, in which case not
|
||||
]]
|
||||
|
||||
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[104] = _("Mismatching brackets '[]'")
|
||||
SRELL_ERROR_CODES[105] = _("Mismatched parens '()'")
|
||||
|
||||
Reference in New Issue
Block a user