From acce754eb8fb3a4a7d2546043da5538ccb7d90b5 Mon Sep 17 00:00:00 2001 From: aycabta Date: Fri, 13 Aug 2021 12:57:15 +0900 Subject: [PATCH] [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 --- lib/reline/ansi.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/reline/ansi.rb b/lib/reline/ansi.rb index 3880f51551..09bd95662a 100644 --- a/lib/reline/ansi.rb +++ b/lib/reline/ansi.rb @@ -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