diff options
author | aycabta <[email protected]> | 2019-11-21 02:44:15 +0900 |
---|---|---|
committer | aycabta <[email protected]> | 2019-11-21 02:44:35 +0900 |
commit | eee70b41d4c04caa06a68cc4847a600eb7322cb8 (patch) | |
tree | 1b88d41d6c51a9967c37299bd7bd5c99631c06e4 /lib/irb/init.rb | |
parent | 9d6f78822c61348989802848150f103f0a4ef7d0 (diff) |
Add a warning message and --legacy of an alias of --singleline
Diffstat (limited to 'lib/irb/init.rb')
-rw-r--r-- | lib/irb/init.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/init.rb b/lib/irb/init.rb index 11f3932be2..ebae37146f 100644 --- a/lib/irb/init.rb +++ b/lib/irb/init.rb @@ -161,7 +161,7 @@ module IRB # :nodoc: end when "--noinspect" @CONF[:INSPECT_MODE] = false - when "--singleline", "--readline" + when "--singleline", "--readline", "--legacy" @CONF[:USE_SINGLELINE] = true when "--nosingleline", "--noreadline" @CONF[:USE_SINGLELINE] = false |