(dired-byte-compile): Report failure if output file is not created.

This commit is contained in:
Richard M. Stallman 1995-08-29 16:22:25 +00:00
parent d70fbccad6
commit d5b876efa8

View file

@ -649,6 +649,8 @@ and use this command with a prefix argument (the value does not matter)."
(error
(setq failure err)))
(setq elc-file (byte-compile-dest-file filename))
(or (file-exists-p elc-file)
(setq failure t))
(if failure
(progn
(dired-log "Byte compile error for %s:\n%s\n" filename failure)