diff --git a/core/core.el b/core/core.el index 8501332a2..33421040b 100644 --- a/core/core.el +++ b/core/core.el @@ -5,6 +5,10 @@ (error "Detected Emacs %s. Doom only supports Emacs 25.1 and higher" 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 @@ -13,10 +17,6 @@ (defconst doom-version "2.0.9" "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+ (eval-when-compile (not (version< emacs-version "26")))) (defconst EMACS27+