[前][次][番号順一覧][スレッド一覧]

ruby-changes:67034

From: aycabta <ko1@a...>
Date: Wed, 4 Aug 2021 18:30:06 +0900 (JST)
Subject: [ruby-changes:67034] 5bb7b57129 (master): Use Symbol of signal for trap

https://git.ruby-lang.org/ruby.git/commit/?id=5bb7b57129

From 5bb7b571299a06f051b065dec9dd5194e82bd796 Mon Sep 17 00:00:00 2001
From: aycabta <aycabta@g...>
Date: Sat, 31 Jul 2021 21:39:04 +0900
Subject: Use Symbol of signal for trap

---
 lib/reline/line_editor.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/reline/line_editor.rb b/lib/reline/line_editor.rb
index 8b52a42..6257331 100644
--- a/lib/reline/line_editor.rb
+++ b/lib/reline/line_editor.rb
@@ -150,7 +150,7 @@ class Reline::LineEditor https://github.com/ruby/ruby/blob/trunk/lib/reline/line_editor.rb#L150
     @screen_size = Reline::IOGate.get_screen_size
     @screen_height = @screen_size.first
     reset_variables(prompt, encoding: encoding)
-    @old_trap = Signal.trap('SIGINT') {
+    @old_trap = Signal.trap(:INT) {
       if @scroll_partial_screen
         move_cursor_down(@screen_height - (@line_index - @scroll_partial_screen) - 1)
       else
-- 
cgit v1.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]