diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 68aee396f48..f2a617e8531 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-01-05 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * simple.el (backward-kill-word): Doc fix. | ||
| 4 | |||
| 1 | 2007-01-05 Romain Francoise <romain@orebokech.com> | 5 | 2007-01-05 Romain Francoise <romain@orebokech.com> |
| 2 | 6 | ||
| 3 | * international/mule.el (sgml-html-meta-auto-coding-function): | 7 | * international/mule.el (sgml-html-meta-auto-coding-function): |
diff --git a/lisp/simple.el b/lisp/simple.el index da0f95c0ec6..4edff54bf06 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -4096,7 +4096,7 @@ With argument, do this that many times." | |||
| 4096 | (kill-region (point) (progn (forward-word arg) (point)))) | 4096 | (kill-region (point) (progn (forward-word arg) (point)))) |
| 4097 | 4097 | ||
| 4098 | (defun backward-kill-word (arg) | 4098 | (defun backward-kill-word (arg) |
| 4099 | "Kill characters backward until encountering the end of a word. | 4099 | "Kill characters backward until encountering the beginning of a word. |
| 4100 | With argument, do this that many times." | 4100 | With argument, do this that many times." |
| 4101 | (interactive "p") | 4101 | (interactive "p") |
| 4102 | (kill-word (- arg))) | 4102 | (kill-word (- arg))) |