]> git.eshelyaron.com Git - emacs.git/commitdiff
(eval-defun): Doc fix.
authorGerd Moellmann <gerd@gnu.org>
Mon, 29 Oct 2001 09:09:03 +0000 (09:09 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 29 Oct 2001 09:09:03 +0000 (09:09 +0000)
lisp/ChangeLog
lisp/emacs-lisp/lisp-mode.el

index 66f9019e94affd701fb4ddb36158dce58ae5b642..fbb9088de028ad4e5e4262983fe3b13ab3b0925a 100644 (file)
@@ -1,3 +1,10 @@
+2001-10-29  Richard M. Stallman  <rms@gnu.org>
+
+       * mail/supercite.el (sc-emacs-features): Test for "Emacs 19"
+       by really checking that it is not version 18.
+
+       * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
+
 2001-10-28  Per Abrahamsen  <abraham@dina.kvl.dk>
 
        * cus-start.el (recursive-load-depth-limit): Added.
index 7cae7a92a7b1a751886e43f891642cf7429ac483..a6b15ca35df89f3a8ac3bd6569acb0596df0c6d8 100644 (file)
@@ -512,10 +512,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.