diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2004-01-12 23:28:29 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2004-01-12 23:28:29 +0000 |
commit | 7618fe8e02aed9e6f1bb5d7ba30e272c3adf662b (patch) | |
tree | 8024d54ef499c245e13ad0fdfec903de00ecc3cf /lisp/emacs-lisp | |
parent | 4007b34c1253e958bff09aa697369db3f3197f04 (diff) | |
download | emacs-7618fe8e02aed9e6f1bb5d7ba30e272c3adf662b.tar.gz emacs-7618fe8e02aed9e6f1bb5d7ba30e272c3adf662b.tar.bz2 emacs-7618fe8e02aed9e6f1bb5d7ba30e272c3adf662b.zip |
(compile-defun): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 5b3a846cd2f..f6444d42b35 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -10,7 +10,7 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.138 $") +(defconst byte-compile-version "$Revision: 2.139 $") ;; This file is part of GNU Emacs. @@ -75,7 +75,7 @@ ;; User customization variables: ;; ;; byte-compile-verbose Whether to report the function currently being -;; compiled in the minibuffer; +;; compiled in the echo area; ;; byte-optimize Whether to do optimizations; this may be ;; t, nil, 'source, or 'byte; ;; byte-optimize-log Whether to report (in excruciating detail) @@ -1658,7 +1658,7 @@ The value is non-nil if there were no errors, nil if errors." ;;;###autoload (defun compile-defun (&optional arg) "Compile and evaluate the current top-level form. -Print the result in the minibuffer. +Print the result in the echo area. With argument, insert value in current buffer after the form." (interactive "P") (save-excursion |