aboutsummaryrefslogtreecommitdiffstats
path: root/lib/reline.rb
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2020-02-23 12:35:24 +0900
committeraycabta <aycabta@gmail.com>2020-03-26 17:41:21 +0900
commitf245fb1ab8d893a89c8749a703efea0b16353028 (patch)
treebcdb35d97c228f6616a290284b7e492e4f8d4b2e /lib/reline.rb
parent22477128cd77e0d0dce7e78bc12f9cc8cccc1cb4 (diff)
downloadruby-f245fb1ab8d893a89c8749a703efea0b16353028.tar.gz
[ruby/reline] Work with wrong $/ value correctly
https://github.com/ruby/reline/commit/962ebf5a1b
Diffstat (limited to 'lib/reline.rb')
-rw-r--r--lib/reline.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/reline.rb b/lib/reline.rb
index 3303fb4dd4..2708cd91b5 100644
--- a/lib/reline.rb
+++ b/lib/reline.rb
@@ -175,7 +175,7 @@ module Reline
whole_buffer = line_editor.whole_buffer.dup
whole_buffer.taint if RUBY_VERSION < '2.7'
- if add_hist and whole_buffer and whole_buffer.chomp.size > 0
+ if add_hist and whole_buffer and whole_buffer.chomp("\n").size > 0
Reline::HISTORY << whole_buffer
end
@@ -188,8 +188,8 @@ module Reline
line = line_editor.line.dup
line.taint if RUBY_VERSION < '2.7'
- if add_hist and line and line.chomp.size > 0
- Reline::HISTORY << line.chomp
+ if add_hist and line and line.chomp("\n").size > 0
+ Reline::HISTORY << line.chomp("\n")
end
line_editor.reset_line if line_editor.line.nil?