diff options
author | Mari Imaizumi <[email protected]> | 2024-04-15 22:31:33 +0900 |
---|---|---|
committer | git <[email protected]> | 2024-04-15 13:31:38 +0000 |
commit | 0a4e3f23e6f872537faedb8d728a5696f63a7f89 (patch) | |
tree | 50c7956073b19ab82497d561a262d50d31e3a1fb | |
parent | 43f4da3ebfe39995fa6476af4ba4514ece8e4b4a (diff) |
[ruby/reline] Remove not implemented method
(https://github.com/ruby/reline/pull/680)
https://github.com/ruby/reline/commit/84762fc588
-rw-r--r-- | lib/reline/key_actor/emacs.rb | 2 | ||||
-rw-r--r-- | lib/reline/line_editor.rb | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/lib/reline/key_actor/emacs.rb b/lib/reline/key_actor/emacs.rb index 4c7b8421af..5d0a7fb63d 100644 --- a/lib/reline/key_actor/emacs.rb +++ b/lib/reline/key_actor/emacs.rb @@ -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 ^] diff --git a/lib/reline/line_editor.rb b/lib/reline/line_editor.rb index 45c6894ff8..e4d7ecf1a2 100644 --- a/lib/reline/line_editor.rb +++ b/lib/reline/line_editor.rb @@ -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 |