mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-15 14:51:01 -08:00
fix: reversed autoloads
Autoloads were accidentally reversed in114f996. For some packages, autoload order is signifcant (such as json-mode, which autoloads json-mode-auto-mode-list first, then modifies it in a later autoload). Fix: #8143 Amend:114f99688c
This commit is contained in:
parent
b3aa41fd74
commit
b26980a4a4
1 changed files with 1 additions and 1 deletions
|
|
@ -194,7 +194,7 @@ non-nil, treat FILES as pre-generated autoload files instead."
|
|||
subautoloads))
|
||||
(end-of-file)))
|
||||
(push `(let* ((load-file-name ,file) (load-true-file-name load-file-name))
|
||||
,@(delq nil subautoloads))
|
||||
,@(nreverse (delq nil subautoloads)))
|
||||
autoloads)))))))
|
||||
|
||||
(provide 'doom-lib '(autoloads))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue