Skip to content

Commit

Permalink
fix(vars): correctly manage the different MINEMACS_IGNORE_* vars
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Oct 31, 2023
1 parent c393d1c commit d68e20d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/me-vars.el
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
:group 'minemacs)

(defconst minemacs-ignore-user-config
(append
(if (getenv "MINEMACS_IGNORE_USER_CONFIG")
'(config modules early-config init-tweaks)
(if (getenv "MINEMACS_IGNORE_USER_CONFIG")
'(config modules early-config init-tweaks)
(append
(when (getenv "MINEMACS_IGNORE_CONFIG_EL") '(config))
(when (getenv "MINEMACS_IGNORE_MODULES_EL") '(modules))
(when (getenv "MINEMACS_IGNORE_EARLY_CONFIG_EL") '(early-config))
Expand Down

0 comments on commit d68e20d

Please sign in to comment.