# HG changeset patch # User Kim F. Storm # Date 1165235498 0 # Node ID ae98808fc6e4d97a7286c5c7cd594608e6473281 # Parent b3bb05fc3e6aeb83a144d18a2fbeedfa13f59dad (global-map): Bind [signal t] to ignore, to have user signals ignored by default. diff -r b3bb05fc3e6a -r ae98808fc6e4 lisp/bindings.el --- a/lisp/bindings.el Mon Dec 04 12:30:20 2006 +0000 +++ b/lisp/bindings.el Mon Dec 04 12:31:38 2006 +0000 @@ -1064,6 +1064,10 @@ (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