(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:
parent
0c9d62f60b
commit
343462edc9
2 changed files with 15 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2001-07-25 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-defun):
|
||||
Mention the effect of eval-expression-print-length and
|
||||
eval-expression-print-level in the doc strings. Suggested by
|
||||
Kevin Gallagher <kevingal@onramp.net>.
|
||||
|
||||
2001-07-25 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* emacs-lisp/find-func.el (find-function-regexp): Add
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue