diff options
| author | Glenn Morris | 2008-04-27 01:41:46 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-04-27 01:41:46 +0000 |
| commit | f279aaab80f7628e1e64a1ea0f9f28de203b8aed (patch) | |
| tree | 40aa27c7b2192537374cb65cf9a214445a2337fd | |
| parent | 0bbb238794b3bc645469638fb7414d05fc02fd6b (diff) | |
| download | emacs-f279aaab80f7628e1e64a1ea0f9f28de203b8aed.tar.gz emacs-f279aaab80f7628e1e64a1ea0f9f28de203b8aed.zip | |
(byte-compile-file): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 11b7537bcd6..63e7dedc069 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2008-04-27 Glenn Morris <rgm@gnu.org> | 1 | 2008-04-27 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-file): Doc fix. | ||
| 4 | |||
| 3 | * calculator.el (calculator-expt): Replace cl function `oddp'. | 5 | * calculator.el (calculator-expt): Replace cl function `oddp'. |
| 4 | 6 | ||
| 5 | 2008-04-27 Johan Bockgård <bojohan@gnu.org> | 7 | 2008-04-27 Johan Bockgård <bojohan@gnu.org> |
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 0249c0dc78c..49271971f83 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -1683,7 +1683,7 @@ This is normally set in local file variables at the end of the elisp file: | |||
| 1683 | (defun byte-compile-file (bytecomp-filename &optional load) | 1683 | (defun byte-compile-file (bytecomp-filename &optional load) |
| 1684 | "Compile a file of Lisp code named BYTECOMP-FILENAME into a file of byte code. | 1684 | "Compile a file of Lisp code named BYTECOMP-FILENAME into a file of byte code. |
| 1685 | The output file's name is generated by passing BYTECOMP-FILENAME to the | 1685 | The output file's name is generated by passing BYTECOMP-FILENAME to the |
| 1686 | `byte-compile-dest-file' function (which see). | 1686 | function `byte-compile-dest-file' (which see). |
| 1687 | With prefix arg (noninteractively: 2nd arg), LOAD the file after compiling. | 1687 | With prefix arg (noninteractively: 2nd arg), LOAD the file after compiling. |
| 1688 | The value is non-nil if there were no errors, nil if errors." | 1688 | The value is non-nil if there were no errors, nil if errors." |
| 1689 | ;; (interactive "fByte compile file: \nP") | 1689 | ;; (interactive "fByte compile file: \nP") |