From: Kai Großjohann Date: Mon, 26 May 2003 18:02:24 +0000 (+0000) Subject: (global-map): Don't bind S-. Too many X-Git-Tag: ttn-vms-21-2-B4~9933 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8b9266575b536ee7e1f4eae6ea869513d77e0b74;p=emacs.git (global-map): Don't bind S-. Too many people hit it by mistake. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4e0832288db..a9a7a25bf9b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,16 @@ +2003-05-26 Kai Gro,A_(Bjohann + + * bindings.el (global-map): Don't bind S-. Too many + people hit it by mistake. + +2003-05-23 Kai Gro,A_(Bjohann + + * 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 . + 2003-05-26 Andre Spiegel * 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." ;(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)