We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0da499 commit 5f194cdCopy full SHA for 5f194cd
core/me-vars.el
@@ -101,8 +101,8 @@ This list is automatically constructed from the environment variables
101
(defconst minemacs-cache-dir (concat minemacs-local-dir "cache/"))
102
(defconst minemacs-loaddefs-file (concat minemacs-core-dir "me-loaddefs.el"))
103
104
-(defconst os/linux (and (memq system-type '(gnu gnu/linux)) t))
105
-(defconst os/bsd (and (memq system-type '(darwin berkeley-unix gnu/kfreebsd)) t))
+(defconst os/linux (eq system-type 'gnu/linux))
+(defconst os/bsd (and (memq system-type '(berkeley-unix gnu/kfreebsd)) t))
106
(defconst os/win (and (memq system-type '(cygwin windows-nt ms-dos)) t))
107
(defconst os/mac (eq system-type 'darwin))
108
0 commit comments