1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Merge pull request #1253 from adelevie/master

Ensure that pry_instance doesn't pass nil to +=
This commit is contained in:
Conrad Irwin 2014-08-16 15:52:24 -07:00
commit c53c6b64a4

View file

@ -505,7 +505,7 @@ class Pry
@input_array << code
if code
Pry.line_buffer.push(*code.each_line)
Pry.current_line += code.each_line.count
Pry.current_line += code.lines.count
end
end