Skip to content

Commit

Permalink
tweak(core): make sure +emacs-features-p returns a boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Apr 27, 2023
1 parent 8e4d74f commit 2c194de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elisp/+minemacs.el
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
;;;###autoload
(defun +emacs-features-p (&rest feats)
"Is features FEATS are enabled in this Emacs build."
(cl-every (lambda (feat) (memq feat emacs/features)) feats))
(cl-every (lambda (feat) (and (memq feat emacs/features) t)) feats))

;;;###autoload
(defmacro +fn-inhibit-messages! (fn &optional no-message-log)
Expand Down

0 comments on commit 2c194de

Please sign in to comment.