[ruby/reline] Remove interrupt avoidance

There used to be a process that did not want to be interrupted by
SIGINT, so it was trapped, but that process is no longer there.

https://github.com/ruby/reline/commit/ba7252a5db
This commit is contained in:
aycabta 2021-08-13 12:57:15 +09:00
parent 1868b9fa85
commit acce754eb8

View File

@ -295,8 +295,6 @@ class Reline::ANSI
def self.prep
retrieve_keybuffer
int_handle = Signal.trap('INT', 'IGNORE')
Signal.trap('INT', int_handle)
nil
end