diff options
| author | tomoya ishida <tomoyapenguin@gmail.com> | 2024-11-30 04:07:32 +0900 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2024-11-29 19:07:35 +0000 |
| commit | 7e02410bf848a009cf57d3ab9f5113b25645e245 (patch) | |
| tree | d09aaf2d054b54c993b8c5d588473ab64a617c8a /lib | |
| parent | c06dcba964954d948b9c7b7f12314fcd82fe62af (diff) | |
[ruby/reline] Don't skip start_with check on encoding-incompatible
candidates
(https://github.com/ruby/reline/pull/787)
https://github.com/ruby/reline/commit/8588be652f
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/reline/line_editor.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/reline/line_editor.rb b/lib/reline/line_editor.rb index a8f4c6198c..5cbef1380b 100644 --- a/lib/reline/line_editor.rb +++ b/lib/reline/line_editor.rb @@ -812,8 +812,6 @@ class Reline::LineEditor if defined?(::Readline) && ::Readline == ::Reline raise Encoding::CompatibilityError, "incompatible character encodings: #{target.encoding} and #{item.encoding}" end - - next true end if @config.completion_ignore_case |
