[ruby/reline] Remove not implemented method

(https://github.com/ruby/reline/pull/680)

https://github.com/ruby/reline/commit/84762fc588
This commit is contained in:
Mari Imaizumi 2024-04-15 22:31:33 +09:00 committed by git
parent 43f4da3ebf
commit 0a4e3f23e6
2 changed files with 1 additions and 4 deletions

View File

@ -55,7 +55,7 @@ class Reline::KeyActor::Emacs < Reline::KeyActor::Base
# 26 ^Z
:ed_ignore,
# 27 ^[
:em_meta_next,
:ed_unassigned,
# 28 ^\
:ed_ignore,
# 29 ^]

View File

@ -2630,7 +2630,4 @@ class Reline::LineEditor
@mark_pointer = new_pointer
end
alias_method :exchange_point_and_mark, :em_exchange_mark
private def em_meta_next(key)
end
end