]> git.eshelyaron.com Git - emacs.git/commitdiff
(eval-defun): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Sun, 28 Oct 2001 14:15:14 +0000 (14:15 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 28 Oct 2001 14:15:14 +0000 (14:15 +0000)
lisp/emacs-lisp/lisp-mode.el

index f154d5de433747f7e0db0c8b19b7e2a086ef659e..ed25088a93d2787ee98e171bc485aaabcec2820e 100644 (file)
@@ -574,10 +574,11 @@ Return the result of evaluation."
 (defun eval-defun (edebug-it)
   "Evaluate the top-level form containing point, or after point.
 
-If the current defun is actually a call to `defvar', then reset the
-variable using its initial value expression even if the variable
-already has some other value.  (Normally `defvar' does not change the
-variable's value if it already has a value.)
+If the current defun is actually a call to `defvar' or `defcustom',
+evaluating it this way resets the variable using its initial value
+expression even if the variable already has some other value.
+\(Normally `defvar' and `defcustom' do not alter the value if there
+already is one.)
 
 With a prefix argument, instrument the code for Edebug.