summaryrefslogtreecommitdiff
path: root/lib/irb.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/irb.rb')
-rw-r--r--lib/irb.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/irb.rb b/lib/irb.rb
index 09ea9256cb..f5a7d24da7 100644
--- a/lib/irb.rb
+++ b/lib/irb.rb
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
+# frozen_string_literal: true
#
# irb.rb - irb main module
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
@@ -903,8 +903,8 @@ module IRB
# parsed as a :method_add_arg and the output won't be suppressed
PROMPT_MAIN_TRUNCATE_LENGTH = 32
- PROMPT_MAIN_TRUNCATE_OMISSION = '...'.freeze
- CONTROL_CHARACTERS_PATTERN = "\x00-\x1F".freeze
+ PROMPT_MAIN_TRUNCATE_OMISSION = '...'
+ CONTROL_CHARACTERS_PATTERN = "\x00-\x1F"
# Returns the current context of this irb session
attr_reader :context
@@ -1056,7 +1056,7 @@ module IRB
return read_input(prompt) if @context.io.respond_to?(:check_termination)
# nomultiline
- code = ''
+ code = +''
line_offset = 0
loop do
line = read_input(prompt)