From 3fef1527745c6c483b8b0384a543a587da362ff4 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Thu, 28 Apr 2016 16:12:53 -0700 Subject: [PATCH] [#956] Mention that Emacs 24.4 is required Some packages are now depending on Emacs 24.4 (e.g. magit). --- README.md | 2 +- init.el | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2bb6ccf..32dfcc3 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ library to the mix. The final product offers an easy to use Emacs configuration for Emacs newcomers and lots of additional power for Emacs power users. -Prelude is compatible **ONLY with GNU Emacs 24.x**. In general you're +Prelude is compatible **ONLY with GNU Emacs 24.4+**. In general you're advised to always run Prelude with the latest Emacs - currently **24.5**. diff --git a/init.el b/init.el index b019411..b1f223f 100644 --- a/init.el +++ b/init.el @@ -38,8 +38,8 @@ (message "Prelude is powering up... Be patient, Master %s!" current-user) -(when (version< emacs-version "24.1") - (error "Prelude requires at least GNU Emacs 24.1, but you're running %s" emacs-version)) +(when (version< emacs-version "24.4") + (error "Prelude requires at least GNU Emacs 24.4, but you're running %s" emacs-version)) ;; Always load newest byte code (setq load-prefer-newer t)