Skip to content

Commit 7451fb5

Browse files
committedJan 8, 2014
Regexp.escape should also escape '(' character
1 parent 7765739 commit 7451fb5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@
104104

105105
* Implicitly require `erb` from stdlib when including erb templates.
106106

107+
* Fix `Regexp.escape` to also escape '(' character.
108+
107109
## 0.5.5 2013-11-25
108110

109111
* Fix regression: add `%i[foo bar]` style words back to lexer

‎opal/corelib/regexp.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ class Regexp
22
`def._isRegexp = true`
33

44
def self.escape(string)
5-
`string.replace(/[\-\[\]\/\{\}\)\)\*\+\?\.\\\^\$| ]/g, '\\$&')`
5+
`string.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$| ]/g, '\\$&')`
66
end
77

88
def self.union(*parts)

0 commit comments

Comments
 (0)
Please sign in to comment.