diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-10-28 14:15:14 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-10-28 14:15:14 +0000 |
commit | 46f90d0ff316746d282ae0831c47f33ad7864c24 (patch) | |
tree | f93378dccc61aef6d1a5150c4f34225f8f423c21 /lisp/emacs-lisp/lisp-mode.el | |
parent | eef442a57ea7a77be4507e4b537550311b41da15 (diff) | |
download | emacs-46f90d0ff316746d282ae0831c47f33ad7864c24.tar.gz |
(eval-defun): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index f154d5de433..ed25088a93d 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -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. |