mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Removed unused variable
This commit is contained in:
parent
ef45fd53e4
commit
951f80f2dd
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class RubyLex
|
|||
result = []
|
||||
lines.each_index { |i|
|
||||
c = lines[0..i].map{ |l| l + "\n" }.join
|
||||
ltype, indent, continue, code_block_open = check_state(c)
|
||||
ltype, indent, continue, = check_state(c)
|
||||
result << @prompt.call(ltype, indent, continue, @line_no + i)
|
||||
}
|
||||
result
|
||||
|
|
Loading…
Add table
Reference in a new issue