Fix doom-active-minor-modes

This commit is contained in:
Henrik Lissner 2018-03-14 04:49:14 -04:00
parent 03e6900d3c
commit 44d30ca3ce
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 6 additions and 2 deletions

View file

@ -37,7 +37,7 @@ whose car is the list of faces and cadr is the list of overlay faces."
(defun doom-active-minor-modes ()
"Get a list of active minor-mode symbols."
(cl-loop for mode in minor-mode-list
unless (and (boundp mode) (symbol-value mode))
if (and (boundp mode) (symbol-value mode))
collect mode))
;;;###autoload