Remove compile ex commands

This commit is contained in:
Henrik Lissner 2016-04-08 15:40:19 -04:00
parent 731a042a7b
commit b2d7e3ac6a
3 changed files with 6 additions and 33 deletions

View file

@ -46,7 +46,12 @@
;;;###autoload
(defun narf/elisp-auto-compile ()
(when (narf/is-recompilable-p)
(when (let ((file-name (buffer-file-name)))
(and (f-exists? (f-expand (concat (f-base file-name) ".elc") (f-dirname file-name)))
(--any? (f-child-of? file-name it)
(append (list narf-core-dir narf-modules-dir
narf-core-dir narf-modules-dir
narf-private-dir)))))
(narf:compile-el)))
;;;###autoload