Skip to content

Commit

Permalink
fix(core): buggy +package-disabled-p
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Feb 3, 2024
1 parent ee7db68 commit 1da5b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/me-lib.el
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ Works like `shell-command-to-string' with two differences:
Optionally, check also for the containing MODULE."
(or
(and (memq package (apply #'append (mapcar #'ensure-list minemacs-disabled-packages))) t)
(and module (not (memq 'me-evil (append minemacs-core-modules minemacs-modules))))))
(and module (not (memq module (append minemacs-core-modules minemacs-modules))))))

(defvar +package--download-urls nil)

Expand Down

0 comments on commit 1da5b30

Please sign in to comment.