diff options
author | Glenn Morris <rgm@gnu.org> | 2009-02-25 08:18:00 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-02-25 08:18:00 +0000 |
commit | 16ac2e615cd1308d74db098700ac433f9b41430d (patch) | |
tree | e17231e26455dbfc25ef005b3eae86d51d527edb /lisp/emacs-lisp | |
parent | 87202be1092491092032d55362f050ea8fc8aa76 (diff) | |
download | emacs-16ac2e615cd1308d74db098700ac433f9b41430d.tar.gz emacs-16ac2e615cd1308d74db098700ac433f9b41430d.tar.bz2 emacs-16ac2e615cd1308d74db098700ac433f9b41430d.zip |
(eval-last-sexp): Mention truncation in doc.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 65c26e67e41..bd330a727c3 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -1,7 +1,7 @@ ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands -;; Copyright (C) 1985, 1986, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +;; Copyright (C) 1985, 1986, 1999, 2000, 2001, 2002, 2003, 2004, 2005, +;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: lisp, languages @@ -723,6 +723,8 @@ With argument, print output into current buffer." (defun eval-last-sexp (eval-last-sexp-arg-internal) "Evaluate sexp before point; print value in minibuffer. Interactively, with prefix argument, print output into current buffer. +Truncates long output according to the value of the variables +`eval-expression-print-length' and `eval-expression-print-level'. If `eval-expression-debug-on-error' is non-nil, which is the default, this command arranges for all errors to enter the debugger." |