зеркало из https://github.com/github/ruby.git
[ruby/erb] fix regexp (https://github.com/ruby/erb/pull/6)
https://github.com/ruby/erb/commit/33100a022f
This commit is contained in:
Родитель
4c2d6f7655
Коммит
b2d15dcad6
|
@ -724,7 +724,7 @@ class ERB
|
|||
frozen = nil
|
||||
s.scan(re) do
|
||||
comment = $+
|
||||
comment = $1 if comment[/-\*-\s*(.*?)\s*-*-$/]
|
||||
comment = $1 if comment[/-\*-\s*([^\s].*?)\s*-*-$/]
|
||||
case comment
|
||||
when %r"coding\s*[=:]\s*([[:alnum:]\-_]+)"
|
||||
enc = Encoding.find($1.sub(/-(?:mac|dos|unix)/i, ''))
|
||||
|
|
Загрузка…
Ссылка в новой задаче