1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-26 15:10:50 -08:00

(eval-defun): Doc fix.

This commit is contained in:
Gerd Moellmann 2001-10-29 09:09:03 +00:00
parent 40f858da4d
commit fa039d32fc
2 changed files with 12 additions and 4 deletions

View 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.

View 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.