diff options
author | Hiroshi SHIBATA <[email protected]> | 2022-10-05 18:56:22 +0900 |
---|---|---|
committer | git <[email protected]> | 2022-10-05 18:59:31 +0900 |
commit | 2f6a26378754adf3658bc237fa51574d3ac64638 (patch) | |
tree | 8c59578485ffc07dec0f61720c7c95396b784891 /lib/irb/context.rb | |
parent | b84140f607526018b604f1b4f3e7917ff5112c17 (diff) |
[ruby/irb] Use USE_REIDLINE for backword compatibility
https://github.com/ruby/irb/commit/e58a3c1b39
Diffstat (limited to 'lib/irb/context.rb')
-rw-r--r-- | lib/irb/context.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/context.rb b/lib/irb/context.rb index b4c687ca40..5e07f5dfb0 100644 --- a/lib/irb/context.rb +++ b/lib/irb/context.rb @@ -54,7 +54,7 @@ module IRB warn <<~MSG.strip USE_REIDLINE is deprecated, please use USE_RELINE instead. MSG - @use_multiline = IRB.conf[:USE_RELINE] + @use_multiline = IRB.conf[:USE_REIDLINE] else @use_multiline = nil end |