mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Fix after! macro with multiple features
This commit is contained in:
@ -204,8 +204,8 @@ compilation. This will no-op on features that have been disabled by the user."
|
|||||||
((and (consp targets)
|
((and (consp targets)
|
||||||
(memq (car targets) '(:and :all)))
|
(memq (car targets) '(:and :all)))
|
||||||
(dolist (next (cdr targets))
|
(dolist (next (cdr targets))
|
||||||
(setq body `(after! ,next ,@body)))
|
(setq body `((after! ,next ,@body))))
|
||||||
body)
|
(car body))
|
||||||
((listp targets)
|
((listp targets)
|
||||||
`(after! (:all ,@targets) ,@body))))))
|
`(after! (:all ,@targets) ,@body))))))
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user