]> git.eshelyaron.com Git - emacs.git/commitdiff
(backward-kill-sexp, kill-sexp): Doc fixes.
authorRichard M. Stallman <rms@gnu.org>
Mon, 17 Jan 2005 23:48:10 +0000 (23:48 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 17 Jan 2005 23:48:10 +0000 (23:48 +0000)
lisp/emacs-lisp/lisp.el

index 69938255112a8f48e5e0da2eaed0ec2ee6c66d11..d19eace58245d6c7257722584bff1d3f0db7f8c9 100644 (file)
@@ -140,18 +140,18 @@ A negative argument means move backward but still to a less deep spot."
       (setq arg (- arg inc)))))
 
 (defun kill-sexp (&optional arg)
-  "Kill the sexp (balanced expression) following the cursor.
-With ARG, kill that many sexps after the cursor.
-Negative arg -N means kill N sexps before the cursor."
+  "Kill the sexp (balanced expression) following point.
+With ARG, kill that many sexps after point.
+Negative arg -N means kill N sexps before point."
   (interactive "p")
   (let ((opoint (point)))
     (forward-sexp (or arg 1))
     (kill-region opoint (point))))
 
 (defun backward-kill-sexp (&optional arg)
-  "Kill the sexp (balanced expression) preceding the cursor.
-With ARG, kill that many sexps before the cursor.
-Negative arg -N means kill N sexps after the cursor."
+  "Kill the sexp (balanced expression) preceding point.
+With ARG, kill that many sexps before point.
+Negative arg -N means kill N sexps after point."
   (interactive "p")
   (kill-sexp (- (or arg 1))))