summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2006-12-19 15:38:42 +0000
committerKim F. Storm <storm@cua.dk>2006-12-19 15:38:42 +0000
commit653a91004559715cb3fe395a667ba769c77b78fd (patch)
tree64e9a4e05b073d509276c6491867aa74d3d188f3
parentf68903b317e0bbddd03b8e2da1e9afedb2afeb47 (diff)
downloademacs-653a91004559715cb3fe395a667ba769c77b78fd.tar.gz
Bind sigusr1 and sigusr2 in special-event-map instead of global-map.
-rw-r--r--lisp/bindings.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index b0a44421c72..c0aa274cce8 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -1065,8 +1065,8 @@ 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)
+(define-key special-event-map [sigusr1] 'ignore)
+(define-key special-event-map [sigusr2] 'ignore)
;; Don't look for autoload cookies in this file.
;; Local Variables: