branch: elpa/sly
commit d53d01a3a82fdd801525c5e54758a4524a4e5b35
Author: AndrĂ© A. Gomes <[email protected]>
Commit: AndrĂ© A. Gomes <[email protected]>

    Sly requires Emacs 24.
    
    24.5 is the last release of the 24 major version.
---
 README.md              | 2 +-
 contrib/sly-autodoc.el | 2 +-
 sly.el                 | 6 +++---
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 8a206dc29ce..8e2a74ae7c4 100644
--- a/README.md
+++ b/README.md
@@ -159,7 +159,7 @@ level to be accepted to SLIME, given its current focus on 
stability (for the
 record, I find this perfectly reasonable). The new features, such as stickers 
or
 multiple inspectors, cannot be realized well using only the existing "contrib"
 system.  Finally, SLY frees itself from the shackles of Emacs 23 and supports
-Emacs 24.3+ only, allowing for much cleaner code and liberal use of lexical
+Emacs 24.5+ only, allowing for much cleaner code and liberal use of lexical
 binding.
 
 The list of technical reasons is bigger than this though, and you can read up 
on
diff --git a/contrib/sly-autodoc.el b/contrib/sly-autodoc.el
index a6c80f845e2..c376a715a80 100644
--- a/contrib/sly-autodoc.el
+++ b/contrib/sly-autodoc.el
@@ -86,7 +86,7 @@
       (cond (multilinep message)
             (t (sly-oneliner (sly-autodoc--canonicalize-whitespace 
message)))))))
 
- (defalias 'sly--font-lock-ensure       ; `font-lock-ensure' is not in Emacs 
24.3.
+ (defalias 'sly--font-lock-ensure       ; `font-lock-ensure' is not in Emacs 
24.5.
    (if (fboundp 'font-lock-ensure)
        #'font-lock-ensure
      (with-no-warnings
diff --git a/sly.el b/sly.el
index f08cb956c98..580a6249c7c 100644
--- a/sly.el
+++ b/sly.el
@@ -2,7 +2,7 @@
 
 ;; Version: 1.0.43
 ;; URL: https://github.com/joaotavora/sly
-;; Package-Requires: ((emacs "24.3"))
+;; Package-Requires: ((emacs "24.5"))
 ;; Keywords: languages, lisp, sly
 
 ;;     Copyright (C) 2003  Eric Marsden, Luke Gorrie, Helmut Eller
@@ -63,8 +63,8 @@
 (require 'cl-lib)
 
 (eval-and-compile
-  (if (version< emacs-version "24.3")
-      (error "Sly requires at least Emacs 24.3")))
+  (if (version< emacs-version "24.5")
+      (error "Sly requires at least Emacs 24.5")))
 
 (eval-and-compile
   (or (require 'hyperspec nil t)

Reply via email to