mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/irb/ruby-lex.rb: fix [Bug #4232].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32257 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bad9f40714
commit
576b44165a
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Jun 28 01:19:52 2011 Keiju Ishitsuka <keiju@ishitsuka.com>
|
||||||
|
|
||||||
|
* lib/irb/ruby-lex.rb: fix [Bug #4232].
|
||||||
|
|
||||||
Tue Jun 28 00:14:13 2011 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
|
Tue Jun 28 00:14:13 2011 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
|
||||||
|
|
||||||
* lib/drb/drb.rb: fix [Bug #4409]. add DRbServer#here?.
|
* lib/drb/drb.rb: fix [Bug #4409]. add DRbServer#here?.
|
||||||
|
|
|
@ -1046,7 +1046,7 @@ class RubyLex
|
||||||
while ch = getc
|
while ch = getc
|
||||||
if @quoted == ch and nest == 0
|
if @quoted == ch and nest == 0
|
||||||
break
|
break
|
||||||
elsif ch == "#" and peek(0) == "{"
|
elsif @ltype != "'" && ch == "#" && peek(0) == "{"
|
||||||
identify_string_dvar
|
identify_string_dvar
|
||||||
elsif @ltype != "'" && @ltype != "]" && @ltype != ":" and ch == "#"
|
elsif @ltype != "'" && @ltype != "]" && @ltype != ":" and ch == "#"
|
||||||
subtype = true
|
subtype = true
|
||||||
|
|
Loading…
Add table
Reference in a new issue