ox-gemini/test/compile.el
2020-11-25 09:16:45 -08:00

9 lines
251 B
EmacsLisp

;; bail out on compilation warnings and errors
(setq byte-compile-error-on-warn t)
(setq byte-compile--use-old-handlers nil)
;; compile *.el files
(dolist (file (file-expand-wildcards "*.el"))
(unless (byte-compile-file file)
(kill-emacs 1)))