diff options
| author | Mari Imaizumi <mariimaizumi5@gmail.com> | 2024-08-27 21:46:41 +0900 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2024-08-27 12:46:45 +0000 |
| commit | a431f4ecc474d51990a0cb263fdf3e07964150e4 (patch) | |
| tree | 94a775c72333478191d3a0da235583b5e5ded7e5 /lib | |
| parent | 04ca75ea6987bdcc3d23ebdc547fedf505cf334d (diff) | |
[ruby/reline] Remove unused variables
(https://github.com/ruby/reline/pull/739)
https://github.com/ruby/reline/commit/14784eddee
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/reline/config.rb | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/reline/config.rb b/lib/reline/config.rb index 774b06b6fd..16ed7eee05 100644 --- a/lib/reline/config.rb +++ b/lib/reline/config.rb @@ -245,22 +245,6 @@ class Reline::Config rescue ArgumentError @history_size = 500 end - when 'bell-style' - @bell_style = - case value - when 'none', 'off' - :none - when 'audible', 'on' - :audible - when 'visible' - :visible - else - :audible - end - when 'comment-begin' - @comment_begin = value.dup - when 'completion-query-items' - @completion_query_items = value.to_i when 'isearch-terminators' @isearch_terminators = retrieve_string(raw_value) when 'editing-mode' |
