From c601382a5525e10a6542257caefa973af2b01b7c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 27 Apr 2020 02:12:47 -0400 Subject: [PATCH] Add EMACS28+ const --- core/core.el | 1 + 1 file changed, 1 insertion(+) diff --git a/core/core.el b/core/core.el index f25296992..7d0596ba7 100644 --- a/core/core.el +++ b/core/core.el @@ -8,6 +8,7 @@ "Current version of Doom Emacs.") (defconst EMACS27+ (> emacs-major-version 26)) +(defconst EMACS28+ (> emacs-major-version 27)) (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)))