Mercurial > emacs
changeset 51247:bae989c94b95
(global-map): Don't bind S-<backspace>. Too many
people hit it by mistake.
author | Kai Großjohann <kgrossjo@eu.uu.net> |
---|---|
date | Mon, 26 May 2003 18:02:24 +0000 |
parents | cc1d7e2b2b7b |
children | e21b4eb91135 |
files | lisp/ChangeLog lisp/bindings.el |
diffstat | 2 files changed, 13 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Mon May 26 10:35:38 2003 +0000 +++ b/lisp/ChangeLog Mon May 26 18:02:24 2003 +0000 @@ -1,3 +1,16 @@ +2003-05-26 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net> + + * bindings.el (global-map): Don't bind S-<backspace>. Too many + people hit it by mistake. + +2003-05-23 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net> + + * simple.el (kill-region): If nothing was killed, and the + previous command was not a kill, break kill sequence. + (kill-whole-line): Don't use kill-line. Make it work with + invisible lines. Make it repeatable. + From Luc Teirlinck <teirllm@dms.auburn.edu>. + 2003-05-26 Andre Spiegel <spiegel@gnu.org> * vc.el (vc-delete-file): Fix free variable reference.
--- a/lisp/bindings.el Mon May 26 10:35:38 2003 +0000 +++ b/lisp/bindings.el Mon May 26 18:02:24 2003 +0000 @@ -743,7 +743,6 @@ ;(define-key global-map [delete] 'backward-delete-char) ;; natural bindings for terminal keycaps --- defined in X keysym order -(define-key global-map [S-backspace] 'kill-whole-line) (define-key global-map [home] 'beginning-of-line) (define-key global-map [C-home] 'beginning-of-buffer) (define-key global-map [M-home] 'beginning-of-buffer-other-window)