aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2004-01-12 23:28:29 +0000
committerLuc Teirlinck2004-01-12 23:28:29 +0000
commit7618fe8e02aed9e6f1bb5d7ba30e272c3adf662b (patch)
tree8024d54ef499c245e13ad0fdfec903de00ecc3cf
parent4007b34c1253e958bff09aa697369db3f3197f04 (diff)
downloademacs-7618fe8e02aed9e6f1bb5d7ba30e272c3adf662b.tar.gz
emacs-7618fe8e02aed9e6f1bb5d7ba30e272c3adf662b.zip
(compile-defun): Doc fix.
-rw-r--r--lisp/emacs-lisp/bytecomp.el6
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 @@
10 10
11;;; This version incorporates changes up to version 2.10 of the 11;;; This version incorporates changes up to version 2.10 of the
12;;; Zawinski-Furuseth compiler. 12;;; Zawinski-Furuseth compiler.
13(defconst byte-compile-version "$Revision: 2.138 $") 13(defconst byte-compile-version "$Revision: 2.139 $")
14 14
15;; This file is part of GNU Emacs. 15;; This file is part of GNU Emacs.
16 16
@@ -75,7 +75,7 @@
75;; User customization variables: 75;; User customization variables:
76;; 76;;
77;; byte-compile-verbose Whether to report the function currently being 77;; byte-compile-verbose Whether to report the function currently being
78;; compiled in the minibuffer; 78;; compiled in the echo area;
79;; byte-optimize Whether to do optimizations; this may be 79;; byte-optimize Whether to do optimizations; this may be
80;; t, nil, 'source, or 'byte; 80;; t, nil, 'source, or 'byte;
81;; byte-optimize-log Whether to report (in excruciating detail) 81;; 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."
1658;;;###autoload 1658;;;###autoload
1659(defun compile-defun (&optional arg) 1659(defun compile-defun (&optional arg)
1660 "Compile and evaluate the current top-level form. 1660 "Compile and evaluate the current top-level form.
1661Print the result in the minibuffer. 1661Print the result in the echo area.
1662With argument, insert value in current buffer after the form." 1662With argument, insert value in current buffer after the form."
1663 (interactive "P") 1663 (interactive "P")
1664 (save-excursion 1664 (save-excursion