From 56c5808a5d5964fa24abcb856ddbb5fcc4010d00 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Mon, 4 Dec 2006 12:31:38 +0000 Subject: [PATCH] (global-map): Bind [signal t] to ignore, to have user signals ignored by default. --- lisp/bindings.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/bindings.el b/lisp/bindings.el index 6fb7b405344..b0a44421c72 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -1064,6 +1064,10 @@ language you are using." (define-key ctl-x-4-map "c" 'clone-indirect-buffer-other-window) +;; Signal handlers +(define-key global-map [signal] (make-sparse-keymap)) +(define-key global-map [signal t] 'ignore) + ;; Don't look for autoload cookies in this file. ;; Local Variables: ;; no-update-autoloads: t -- 2.39.2