* lib/irb/ruby-lex.rb (RubyLex#identify_string): use charclass.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4ec86dcc57
commit
81567892d0
@ -1068,7 +1068,7 @@ class RubyLex
|
||||
end
|
||||
end
|
||||
if @ltype == "/"
|
||||
while peek(0) =~ /i|m|x|o|e|s|u|n/
|
||||
while /[imxoesun]/ =~ peek(0)
|
||||
getc
|
||||
end
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user