diff options
| author | Kim F. Storm | 2006-12-04 12:31:38 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-12-04 12:31:38 +0000 |
| commit | 56c5808a5d5964fa24abcb856ddbb5fcc4010d00 (patch) | |
| tree | fe8462472e8f973918d2fdb1828e1401554cfe08 | |
| parent | d96658e3fd1586182c54ded540401a3bd00e6465 (diff) | |
| download | emacs-56c5808a5d5964fa24abcb856ddbb5fcc4010d00.tar.gz emacs-56c5808a5d5964fa24abcb856ddbb5fcc4010d00.zip | |
(global-map): Bind [signal t] to ignore, to have
user signals ignored by default.
| -rw-r--r-- | lisp/bindings.el | 4 |
1 files changed, 4 insertions, 0 deletions
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." | |||
| 1064 | 1064 | ||
| 1065 | (define-key ctl-x-4-map "c" 'clone-indirect-buffer-other-window) | 1065 | (define-key ctl-x-4-map "c" 'clone-indirect-buffer-other-window) |
| 1066 | 1066 | ||
| 1067 | ;; Signal handlers | ||
| 1068 | (define-key global-map [signal] (make-sparse-keymap)) | ||
| 1069 | (define-key global-map [signal t] 'ignore) | ||
| 1070 | |||
| 1067 | ;; Don't look for autoload cookies in this file. | 1071 | ;; Don't look for autoload cookies in this file. |
| 1068 | ;; Local Variables: | 1072 | ;; Local Variables: |
| 1069 | ;; no-update-autoloads: t | 1073 | ;; no-update-autoloads: t |