mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Remove unnecessary branches
This commit is contained in:
parent
e36319249b
commit
4f9a4c1a8f
1 changed files with 6 additions and 24 deletions
|
@ -1236,19 +1236,10 @@ class Reline::LineEditor
|
|||
case prev_search_key
|
||||
when "\C-r".ord
|
||||
history_pointer_base = 0
|
||||
if change_direction
|
||||
history = Reline::HISTORY[0..@history_pointer]
|
||||
else
|
||||
history = Reline::HISTORY[0..(@history_pointer - 1)]
|
||||
end
|
||||
history = Reline::HISTORY[0..(@history_pointer - 1)]
|
||||
when "\C-s".ord
|
||||
if change_direction
|
||||
history_pointer_base = @history_pointer
|
||||
history = Reline::HISTORY[(@history_pointer)..-1]
|
||||
else
|
||||
history_pointer_base = @history_pointer + 1
|
||||
history = Reline::HISTORY[(@history_pointer + 1)..-1]
|
||||
end
|
||||
history_pointer_base = @history_pointer + 1
|
||||
history = Reline::HISTORY[(@history_pointer + 1)..-1]
|
||||
end
|
||||
else
|
||||
history_pointer_base = 0
|
||||
|
@ -1258,19 +1249,10 @@ class Reline::LineEditor
|
|||
case prev_search_key
|
||||
when "\C-r".ord
|
||||
history_pointer_base = 0
|
||||
if change_direction
|
||||
history = Reline::HISTORY[0..@history_pointer]
|
||||
else
|
||||
history = Reline::HISTORY[0..@history_pointer]
|
||||
end
|
||||
history = Reline::HISTORY[0..@history_pointer]
|
||||
when "\C-s".ord
|
||||
if change_direction
|
||||
history_pointer_base = @history_pointer
|
||||
history = Reline::HISTORY[(@history_pointer - 1)..-1]
|
||||
else
|
||||
history_pointer_base = @history_pointer
|
||||
history = Reline::HISTORY[@history_pointer..-1]
|
||||
end
|
||||
history_pointer_base = @history_pointer
|
||||
history = Reline::HISTORY[@history_pointer..-1]
|
||||
end
|
||||
else
|
||||
history_pointer_base = 0
|
||||
|
|
Loading…
Reference in a new issue