]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/progmodes/elisp-mode.el (elisp--eval-last-sexp): Document argument.
authorNicolas Richard <theonewiththeevillook@yahoo.fr>
Wed, 25 Feb 2015 12:07:43 +0000 (13:07 +0100)
committerNicolas Richard <theonewiththeevillook@yahoo.fr>
Wed, 25 Feb 2015 15:17:54 +0000 (16:17 +0100)
Fixes: 19932
lisp/ChangeLog
lisp/progmodes/elisp-mode.el

index f1dd8db52986d86557eb40b008b6a08fd04b482c..7f7eac64b6eb866e6291ec88e892522c20c046d0 100644 (file)
@@ -1,3 +1,7 @@
+2015-02-25  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
+
+       * progmodes/elisp-mode.el (elisp--eval-last-sexp): Document argument.
+
 2015-02-25  Oleh Krehel  <ohwoeowho@gmail.com>
 
        * emacs-lisp/check-declare.el (check-declare-warn): Use
index b2c5fbfe60ee3f0fbf038411dbbd11ad49db084c..29f1ee9a98c5fa18d8e20b1e6b95fd4730587f9c 100644 (file)
@@ -883,10 +883,11 @@ If CHAR is not a character, return nil."
 
 (defun elisp--eval-last-sexp (eval-last-sexp-arg-internal)
   "Evaluate sexp before point; print value in the echo area.
-With argument, print output into current buffer.
-With a zero prefix arg, print output with no limit on the length
-and level of lists, and include additional formats for integers
-\(octal, hexadecimal, and character)."
+If EVAL-LAST-SEXP-ARG-INTERNAL is non-nil, print output into
+current buffer.  If EVAL-LAST-SEXP-ARG-INTERNAL is `0', print
+output with no limit on the length and level of lists, and
+include additional formats for integers \(octal, hexadecimal, and
+character)."
   (let ((standard-output (if eval-last-sexp-arg-internal (current-buffer) t)))
     ;; Setup the lexical environment if lexical-binding is enabled.
     (elisp--eval-last-sexp-print-value