comparison lisp/emacs-lisp/lisp-mode.el @ 40409:216728b10960

(eval-defun): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Sun, 28 Oct 2001 14:15:14 +0000
parents 0e059993ad95
children b1a039465517
comparison
equal deleted inserted replaced
40408:4389d47e0f42 40409:216728b10960
572 (car values)) 572 (car values))
573 573
574 (defun eval-defun (edebug-it) 574 (defun eval-defun (edebug-it)
575 "Evaluate the top-level form containing point, or after point. 575 "Evaluate the top-level form containing point, or after point.
576 576
577 If the current defun is actually a call to `defvar', then reset the 577 If the current defun is actually a call to `defvar' or `defcustom',
578 variable using its initial value expression even if the variable 578 evaluating it this way resets the variable using its initial value
579 already has some other value. (Normally `defvar' does not change the 579 expression even if the variable already has some other value.
580 variable's value if it already has a value.) 580 \(Normally `defvar' and `defcustom' do not alter the value if there
581 already is one.)
581 582
582 With a prefix argument, instrument the code for Edebug. 583 With a prefix argument, instrument the code for Edebug.
583 584
584 If acting on a `defun' for FUNCTION, and the function was 585 If acting on a `defun' for FUNCTION, and the function was
585 instrumented, `Edebug: FUNCTION' is printed in the minibuffer. If not 586 instrumented, `Edebug: FUNCTION' is printed in the minibuffer. If not