Fix bin/doom ignoring -d flag
defconst -> defvar
This commit is contained in:
parent
40e4c872f4
commit
db8b4091dd
1 changed files with 4 additions and 4 deletions
|
@ -5,6 +5,10 @@
|
||||||
(error "Detected Emacs %s. Doom only supports Emacs 25.1 and higher"
|
(error "Detected Emacs %s. Doom only supports Emacs 25.1 and higher"
|
||||||
emacs-version)))
|
emacs-version)))
|
||||||
|
|
||||||
|
(defvar doom-debug-mode (or (getenv "DEBUG") init-file-debug)
|
||||||
|
"If non-nil, all doom functions will be verbose. Set DEBUG=1 in the command
|
||||||
|
line or use --debug-init to enable this.")
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
;; Constants
|
;; Constants
|
||||||
|
@ -13,10 +17,6 @@
|
||||||
(defconst doom-version "2.0.9"
|
(defconst doom-version "2.0.9"
|
||||||
"Current version of DOOM emacs.")
|
"Current version of DOOM emacs.")
|
||||||
|
|
||||||
(defconst doom-debug-mode (or (getenv "DEBUG") init-file-debug)
|
|
||||||
"If non-nil, all doom functions will be verbose. Set DEBUG=1 in the command
|
|
||||||
line or use --debug-init to enable this.")
|
|
||||||
|
|
||||||
(defconst EMACS26+
|
(defconst EMACS26+
|
||||||
(eval-when-compile (not (version< emacs-version "26"))))
|
(eval-when-compile (not (version< emacs-version "26"))))
|
||||||
(defconst EMACS27+
|
(defconst EMACS27+
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue