aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-01-05 20:24:50 +0000
committerRichard M. Stallman2007-01-05 20:24:50 +0000
commit654ec2691d83ecabd67147d58c136754172fe3e4 (patch)
tree5dad7d50b9c59deb83bf31947da6770c8fb8e523
parentcc7ff062cdf79a987941723083d89c04ca4a4e8b (diff)
downloademacs-654ec2691d83ecabd67147d58c136754172fe3e4.tar.gz
emacs-654ec2691d83ecabd67147d58c136754172fe3e4.zip
(backward-kill-word): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/simple.el2
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 @@
12007-01-05 Richard Stallman <rms@gnu.org>
2
3 * simple.el (backward-kill-word): Doc fix.
4
12007-01-05 Romain Francoise <romain@orebokech.com> 52007-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.
4100With argument, do this that many times." 4100With argument, do this that many times."
4101 (interactive "p") 4101 (interactive "p")
4102 (kill-word (- arg))) 4102 (kill-word (- arg)))