Load non-packages.el autoloads
We were only pulling in autoloads files for packages installed via packages.el. This was not that noticeable because all pinned packages without custom derivations end up installed that way, but it does affect extra packages (including the one pointed out in #11). Try to fix this by including autoloads files in the top-level site-lisp directory from emacsWithPackages.
This commit is contained in:
parent
b28f009ef7
commit
fa6fe4cf93
5 changed files with 27 additions and 2 deletions
5
tests.el
5
tests.el
|
|
@ -41,6 +41,11 @@
|
|||
(unless (string-search "/site-lisp/revealjs" org-re-reveal-root)
|
||||
(error "org-re-reveal does not find our revealjs: %s" org-re-reveal-root)))
|
||||
|
||||
(defun test-cmake ()
|
||||
"Test cmake-mode autoloads are loaded."
|
||||
(unless (functionp 'cmake-mode)
|
||||
(error "cmake-mode not available")))
|
||||
|
||||
(defun test-doom ()
|
||||
(let* ((out (getenv "out"))
|
||||
(test (intern-soft (format "test-%s" (getenv "testName"))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue