]> code.delx.au - gnu-emacs/commitdiff
(eval-print-last-sexp, eval-defun):
authorEli Zaretskii <eliz@gnu.org>
Wed, 25 Jul 2001 16:24:58 +0000 (16:24 +0000)
committerEli Zaretskii <eliz@gnu.org>
Wed, 25 Jul 2001 16:24:58 +0000 (16:24 +0000)
Mention the effect of eval-expression-print-length and
eval-expression-print-level.  Suggested by Kevin Gallagher
<kevingal@onramp.net>.

lisp/ChangeLog
lisp/emacs-lisp/lisp-mode.el

index fbab0a632d1ad94124bcc60de529e07f6f07d11a..e64d0948673de0c48c426cf21c535456a300ac7d 100644 (file)
@@ -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
index 6e476ab8fcf903775e8cb6b832968573333d9901..062bb7534a2032b7e67b0bfc69bf15e151672a36 100644 (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)