-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: None
-
Component/s: core-libs
-
None
-
b91
-
Verified
A regexp regression was introduced in changeset 125:037e1de7ab1a where an escaped dash in a character class is not escaped in the pattern produced by RegExpScanner removes the backslash.
Example:
/[a\-b]/
is converted to:
/[a-b]/
Example:
/[a\-b]/
is converted to:
/[a-b]/