diff options
| author | Karl Heuer | 1999-06-27 21:45:34 +0000 |
|---|---|---|
| committer | Karl Heuer | 1999-06-27 21:45:34 +0000 |
| commit | ebc03d28d74503bb525d1d3643ac24ac9cec87ae (patch) | |
| tree | 3a5c9ee4273ddc69a8d6e553cc23709ea8f66c26 | |
| parent | 47d1bc29bb52bdb9497a63753d99044107764b12 (diff) | |
| download | emacs-ebc03d28d74503bb525d1d3643ac24ac9cec87ae.tar.gz emacs-ebc03d28d74503bb525d1d3643ac24ac9cec87ae.zip | |
(eval-defun): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 98f53a2cd29..c9761d3a9f2 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -346,7 +346,13 @@ With argument, print output into current buffer." | |||
| 346 | 346 | ||
| 347 | (defun eval-defun (eval-defun-arg-internal) | 347 | (defun eval-defun (eval-defun-arg-internal) |
| 348 | "Evaluate defun that point is in or before. | 348 | "Evaluate defun that point is in or before. |
| 349 | Print value in minibuffer. | 349 | The value is displayed in the minibuffer. |
| 350 | If the current defun is actually a call to `defvar', | ||
| 351 | then reset the variable using the initial value expression | ||
| 352 | even if the variable already has some other value. | ||
| 353 | \(Normally `defvar' does not change the variable's value | ||
| 354 | if it already has a value.\) | ||
| 355 | |||
| 350 | With argument, insert value in current buffer after the defun. | 356 | With argument, insert value in current buffer after the defun. |
| 351 | Return the result of evaluation." | 357 | Return the result of evaluation." |
| 352 | (interactive "P") | 358 | (interactive "P") |