Browse Source

Don't recompile elc files outside of Prelude

custom
Bozhidar Batsov 12 years ago
parent
commit
b998a8bd47
  1. 4
      modules/prelude-emacs-lisp.el

4
modules/prelude-emacs-lisp.el

@ -39,7 +39,9 @@
"Recompile your elc when saving an elisp file."
(add-hook 'after-save-hook
(lambda ()
(when (file-exists-p (byte-compile-dest-file buffer-file-name))
(when (and
(string-prefix-p prelude-dir (file-truename buffer-file-name))
(file-exists-p (byte-compile-dest-file buffer-file-name)))
(emacs-lisp-byte-compile)))
nil
t))

Loading…
Cancel
Save