diff --git a/core/autoload/plist.el b/core/autoload/plist.el index b99351dd6..aeb9c7f9a 100644 --- a/core/autoload/plist.el +++ b/core/autoload/plist.el @@ -9,7 +9,7 @@ Evaluate BODY with either ARGLIST bound to (cons PROP VAL) or, if ARGLIST is a list, the pair is destructured into (CAR . CDR)." - (declare (indent defun)) + (declare (indent 1)) (let ((plist-var (make-symbol "plist"))) `(let ((,plist-var (copy-sequence ,plist))) (while ,plist-var diff --git a/core/core.el b/core/core.el index 176a93855..7034c51f5 100644 --- a/core/core.el +++ b/core/core.el @@ -7,7 +7,7 @@ (defconst doom-version "2.0.9" "Current version of Doom Emacs.") -(defconst EMACS27+ (> emacs-major-version 26)) +(defconst EMACS27+ (> emacs-major-version 26)) (defconst IS-MAC (eq system-type 'darwin)) (defconst IS-LINUX (eq system-type 'gnu/linux)) (defconst IS-WINDOWS (memq system-type '(cygwin windows-nt ms-dos)))