diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-02-23 19:17:57 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-02-23 19:17:57 +0000 |
commit | a2bb8f73f210ef9a5472d3943e376ed011c80429 (patch) | |
tree | 1d947cdf10b9323d1a01433d6f246989e5f5a91a /lisp/emacs-lisp | |
parent | 1c1fce3febd73041ad73b2278079c26f22617d97 (diff) | |
download | emacs-a2bb8f73f210ef9a5472d3943e376ed011c80429.tar.gz emacs-a2bb8f73f210ef9a5472d3943e376ed011c80429.tar.bz2 emacs-a2bb8f73f210ef9a5472d3943e376ed011c80429.zip |
(byte-compile-file): Return nil on failure.
Diffstat (limited to 'lisp/emacs-lisp')
-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." (save-excursion (display-call-tree filename))) (if load - (load target-file)))) - t) + (load target-file)) + t))) ;;(defun byte-compile-and-load-file (&optional filename) ;; "Compile a file of Lisp code named FILENAME into a file of byte code, |