Add script to check for byte-compile failures
Just a manual check for now.
This commit is contained in:
parent
54c396f24b
commit
68d5ec704b
2 changed files with 17 additions and 3 deletions
15
build-helpers/byte-compile-check.el
Executable file
15
build-helpers/byte-compile-check.el
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
;; Run with emacs --script
|
||||
|
||||
(let ((els))
|
||||
(dolist (path load-path)
|
||||
(dolist (el (file-expand-wildcards (expand-file-name "*.el" path)))
|
||||
(unless (or (string-suffix-p "-pkg.el" el)
|
||||
(string-suffix-p "-theme.el" el)
|
||||
(string-suffix-p "-autoloads.el" el)
|
||||
(file-exists-p (concat el "c"))
|
||||
(with-temp-buffer
|
||||
(insert-file-contents el)
|
||||
;; This is wrong, but close enough for our purposes.
|
||||
(search-forward "no-byte-compile: t" nil t)))
|
||||
(push el els))))
|
||||
(princ (string-join (seq-sort #'string< els) "\n")))
|
||||
Loading…
Add table
Add a link
Reference in a new issue