my-emacs-d/lisp/recompile-files.el
Gergely Polonkai ec94d552fc Change recompile-files shell script to pure Elisp
It still calls `find(1)`, but everything else is Elisp. This means it is
generally faster. It still has some buffer processing overhead, though.
2016-10-13 17:23:05 +02:00

27 lines
781 B
EmacsLisp

(defun recompile-stale-elcs ()
(interactive)
(with-temp-buffer
(setq-local default-directory user-emacs-directory)
(let ((find-command (find-cmd '(prune (name ".git"))
'(name "*.elc"))))
(shell-command find-command t t))
(goto-char (point-min))
(setq more-lines t)
(while more-lines
(let ((start (progn (beginning-of-line)
(point)))
(end (progn (end-of-line)
(point))))
(let ((el (buffer-substring start (- end 1)))
(elc (buffer-substring start end)))
(if (file-newer-than-file-p el elc)
(byte-compile-file (buffer-substring start (- end 1))))))
(setq more-lines (= 0 (forward-line 1))))))