From e3730520646f6f8fca2d6f3664bdb48c1dffb953 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 28 Dec 2018 15:22:52 -0500 Subject: [PATCH] Restrict support to Emacs 25.3+ from now on 25.1-25.2 are no longer supported. --- core/core.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core.el b/core/core.el index eb7c1d0aa..52a299c74 100644 --- a/core/core.el +++ b/core/core.el @@ -1,8 +1,8 @@ ;;; core.el --- the heart of the beast -*- lexical-binding: t; -*- (eval-when-compile - (and (version< emacs-version "25") - (error "Detected Emacs %s. Doom only supports Emacs 25.1 and higher" + (and (version< emacs-version "25.3") + (error "Detected Emacs %s. Doom only supports Emacs 25.3 and higher" emacs-version))) (defvar doom-debug-mode (or (getenv "DEBUG") init-file-debug)