lib/byebug/processor.rb in byebug-2.3.0 vs lib/byebug/processor.rb in byebug-2.3.1

- old
+ new

@@ -22,13 +22,13 @@ def initialize(interface = LocalInterface.new) super(interface) @display = [] @mutex = Mutex.new - @last_cmd = nil # To allow empty (just <RET>) commands - @last_file = nil # Filename the last time we stopped - @last_line = nil # Line number the last time we stopped - @context_was_dead = false # Assume we haven't started. + @last_cmd = nil # To allow empty (just <RET>) commands + @last_file = nil # Filename the last time we stopped + @last_line = nil # Line number the last time we stopped + @context_was_dead = false # Assume we haven't started. end def interface=(interface) @mutex.synchronize do @interface.close if @interface