(eval-print-last-sexp, eval-defun):

Mention the effect of eval-expression-print-length and
eval-expression-print-level.  Suggested by Kevin Gallagher
<kevingal@onramp.net>.
This commit is contained in:
Eli Zaretskii 2001-07-25 16:24:58 +00:00
parent 0c9d62f60b
commit 343462edc9
2 changed files with 15 additions and 2 deletions

View file

@ -308,7 +308,11 @@ Entry to this mode calls the value of `lisp-interaction-mode-hook'
if that value is non-nil.")
(defun eval-print-last-sexp ()
"Evaluate sexp before point; print value into current buffer."
"Evaluate sexp before point; print value into current buffer.
Note that printing the result is controlled by the variables
`eval-expression-print-length' and `eval-expression-print-level',
which see."
(interactive)
(let ((standard-output (current-buffer)))
(terpri)
@ -467,7 +471,9 @@ instrumented, `Edebug: FUNCTION' is printed in the minibuffer. If not
instrumented, just FUNCTION is printed.
If not acting on a `defun', the result of evaluation is displayed in
the minibuffer."
the minibuffer. This display is controlled by the variables
`eval-expression-print-length' and `eval-expression-print-level',
which see."
(interactive "P")
(cond (edebug-it
(require 'edebug)