diff options
| author | Kai Großjohann | 2003-05-26 18:02:24 +0000 |
|---|---|---|
| committer | Kai Großjohann | 2003-05-26 18:02:24 +0000 |
| commit | 8b9266575b536ee7e1f4eae6ea869513d77e0b74 (patch) | |
| tree | 4781a22447b5b5c31b4585dbc5bdf22e4a1d317d | |
| parent | d07180216f80b7d21544696ed98a5aaaf80e8ac5 (diff) | |
| download | emacs-8b9266575b536ee7e1f4eae6ea869513d77e0b74.tar.gz emacs-8b9266575b536ee7e1f4eae6ea869513d77e0b74.zip | |
(global-map): Don't bind S-<backspace>. Too many
people hit it by mistake.
| -rw-r--r-- | lisp/ChangeLog | 13 | ||||
| -rw-r--r-- | lisp/bindings.el | 1 |
2 files changed, 13 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4e0832288db..a9a7a25bf9b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2003-05-26 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net> | ||
| 2 | |||
| 3 | * bindings.el (global-map): Don't bind S-<backspace>. Too many | ||
| 4 | people hit it by mistake. | ||
| 5 | |||
| 6 | 2003-05-23 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net> | ||
| 7 | |||
| 8 | * simple.el (kill-region): If nothing was killed, and the | ||
| 9 | previous command was not a kill, break kill sequence. | ||
| 10 | (kill-whole-line): Don't use kill-line. Make it work with | ||
| 11 | invisible lines. Make it repeatable. | ||
| 12 | From Luc Teirlinck <teirllm@dms.auburn.edu>. | ||
| 13 | |||
| 1 | 2003-05-26 Andre Spiegel <spiegel@gnu.org> | 14 | 2003-05-26 Andre Spiegel <spiegel@gnu.org> |
| 2 | 15 | ||
| 3 | * vc.el (vc-delete-file): Fix free variable reference. | 16 | * vc.el (vc-delete-file): Fix free variable reference. |
diff --git a/lisp/bindings.el b/lisp/bindings.el index 7568c89c858..f95a3f588c2 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el | |||
| @@ -743,7 +743,6 @@ language you are using." | |||
| 743 | ;(define-key global-map [delete] 'backward-delete-char) | 743 | ;(define-key global-map [delete] 'backward-delete-char) |
| 744 | 744 | ||
| 745 | ;; natural bindings for terminal keycaps --- defined in X keysym order | 745 | ;; natural bindings for terminal keycaps --- defined in X keysym order |
| 746 | (define-key global-map [S-backspace] 'kill-whole-line) | ||
| 747 | (define-key global-map [home] 'beginning-of-line) | 746 | (define-key global-map [home] 'beginning-of-line) |
| 748 | (define-key global-map [C-home] 'beginning-of-buffer) | 747 | (define-key global-map [C-home] 'beginning-of-buffer) |
| 749 | (define-key global-map [M-home] 'beginning-of-buffer-other-window) | 748 | (define-key global-map [M-home] 'beginning-of-buffer-other-window) |