From c6820797836f5a47cecce131150f58762c0c31bf Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 14 May 2020 16:31:08 -0400 Subject: [PATCH] doom/doctor: warn about 28+, not 27+ 27 is now the recommended version for Doom. --- core/cli/doctor.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/cli/doctor.el b/core/cli/doctor.el index a394d2965..bcc02fa43 100644 --- a/core/cli/doctor.el +++ b/core/cli/doctor.el @@ -48,8 +48,8 @@ in." ;; REVIEW Refactor me (print! (start "Checking your Emacs version...")) - (when EMACS27+ - (warn! "Emacs %s detected. Emacs HEAD is unstable and may cause errors." + (when EMACS28+ + (warn! "Emacs %s detected. Doom doesn't support Emacs 28/HEAD. It is unstable and may cause errors." emacs-version)) (print! (start "Checking for Emacs config conflicts..."))