mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Add emacs version check to core/core.el
This commit is contained in:
@ -1,5 +1,9 @@
|
|||||||
;;; core.el --- The heart of the beast
|
;;; core.el --- The heart of the beast
|
||||||
|
|
||||||
|
(eval-when-compile
|
||||||
|
(when (version< emacs-version "25.1")
|
||||||
|
(error "Emacs v%s detected, DOOM only supports >25.1" emacs-version)))
|
||||||
|
|
||||||
;;; Naming conventions:
|
;;; Naming conventions:
|
||||||
;;
|
;;
|
||||||
;; doom-... public variables or functions (non-interactive)
|
;; doom-... public variables or functions (non-interactive)
|
||||||
|
Reference in New Issue
Block a user