From a431f4ecc474d51990a0cb263fdf3e07964150e4 Mon Sep 17 00:00:00 2001 From: Mari Imaizumi Date: Tue, 27 Aug 2024 21:46:41 +0900 Subject: [ruby/reline] Remove unused variables (https://github.com/ruby/reline/pull/739) https://github.com/ruby/reline/commit/14784eddee --- lib/reline/config.rb | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'lib') 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' -- cgit v1.2.3