Mercurial > emacs
changeset 109722:028db67bd5dd
* tutorial.el (tutorial--default-keys): C-d is now bound to delete-forward-char.
(Bug#6826)
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sun, 08 Aug 2010 19:14:33 -0400 |
parents | 54f0299502c6 |
children | 3783b558402b 7d18e1db65fe a8075662572b |
files | lisp/ChangeLog lisp/tutorial.el |
diffstat | 2 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Mon Aug 09 01:05:49 2010 +0200 +++ b/lisp/ChangeLog Sun Aug 08 19:14:33 2010 -0400 @@ -1,5 +1,8 @@ 2010-08-08 Chong Yidong <cyd@stupidchicken.com> + * tutorial.el (tutorial--default-keys): C-d is now bound to + delete-forward-char (Bug#6826). + * mouse.el (mouse-drag-track): Remove accidentally-removed check for `double' value of mouse-1-click-follows-link (Bug#6807).
--- a/lisp/tutorial.el Mon Aug 09 01:05:49 2010 +0200 +++ b/lisp/tutorial.el Sun Aug 08 19:14:33 2010 -0400 @@ -252,7 +252,7 @@ ;; * INSERTING AND DELETING ;; C-u 8 * to insert ********. (delete-backward-char "\d") - (delete-char [?\C-d]) + (delete-forward-char [?\C-d]) (backward-kill-word [?\M-\d]) (kill-word [?\M-d]) (kill-line [?\C-k])