]> git.eshelyaron.com Git - emacs.git/commitdiff
(global-map): Don't bind S-<backspace>. Too many
authorKai Großjohann <kgrossjo@eu.uu.net>
Mon, 26 May 2003 18:02:24 +0000 (18:02 +0000)
committerKai Großjohann <kgrossjo@eu.uu.net>
Mon, 26 May 2003 18:02:24 +0000 (18:02 +0000)
people hit it by mistake.

lisp/ChangeLog
lisp/bindings.el

index 4e0832288dbb2d512984cc3b9ec0c61cf357ca42..a9a7a25bf9bb3117b0ba1786ed2b2a5e9fc6d342 100644 (file)
@@ -1,3 +1,16 @@
+2003-05-26  Kai Gro\e,A_\e(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\e,A_\e(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.
index 7568c89c858755d556c342141607f4ad271809ad..f95a3f588c22ebaeec1d82ffabbb884c621d68d9 100644 (file)
@@ -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)