comparison lisp/simple.el @ 75113:80f0c81302ab

(backward-kill-word): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Fri, 05 Jan 2007 20:24:43 +0000
parents 75360a225c60
children e3694f1cb928 d3099204c799
comparison
equal deleted inserted replaced
75112:3db1a66f6c43 75113:80f0c81302ab
4094 With argument, do this that many times." 4094 With argument, do this that many times."
4095 (interactive "p") 4095 (interactive "p")
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)))
4103 4103
4104 (defun current-word (&optional strict really-word) 4104 (defun current-word (&optional strict really-word)