diff options
| author | Karl Heuer | 1994-02-23 19:17:57 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-02-23 19:17:57 +0000 |
| commit | a2bb8f73f210ef9a5472d3943e376ed011c80429 (patch) | |
| tree | 1d947cdf10b9323d1a01433d6f246989e5f5a91a | |
| parent | 1c1fce3febd73041ad73b2278079c26f22617d97 (diff) | |
| download | emacs-a2bb8f73f210ef9a5472d3943e376ed011c80429.tar.gz emacs-a2bb8f73f210ef9a5472d3943e376ed011c80429.zip | |
(byte-compile-file): Return nil on failure.
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index dc4476866f1..b72e5bcd0df 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -1200,8 +1200,8 @@ With prefix arg (noninteractively: 2nd arg), load the file after compiling." | |||
| 1200 | (save-excursion | 1200 | (save-excursion |
| 1201 | (display-call-tree filename))) | 1201 | (display-call-tree filename))) |
| 1202 | (if load | 1202 | (if load |
| 1203 | (load target-file)))) | 1203 | (load target-file)) |
| 1204 | t) | 1204 | t))) |
| 1205 | 1205 | ||
| 1206 | ;;(defun byte-compile-and-load-file (&optional filename) | 1206 | ;;(defun byte-compile-and-load-file (&optional filename) |
| 1207 | ;; "Compile a file of Lisp code named FILENAME into a file of byte code, | 1207 | ;; "Compile a file of Lisp code named FILENAME into a file of byte code, |