# HG changeset patch # User Kai Grojohann # Date 1053972144 0 # Node ID bae989c94b95f6c3dad0ff874f76934d2b666de0 # Parent cc1d7e2b2b7bc66e01514f5f226944f97556cd43 (global-map): Don't bind S-. Too many people hit it by mistake. diff -r cc1d7e2b2b7b -r bae989c94b95 lisp/ChangeLog --- 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 + + * 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 -r cc1d7e2b2b7b -r bae989c94b95 lisp/bindings.el --- 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)