Skip to content

Commit

Permalink
refactor(core): minor enhancement
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Jun 16, 2023
1 parent 04650b1 commit 5ccce03
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) (and (memq feat emacs/features) t)) feats))
(and (cl-every (lambda (feat) (memq feat emacs/features)) feats) t))

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

0 comments on commit 5ccce03

Please sign in to comment.