emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/bash-completion 23dbe5b537 276/313: Change minimum support


From: ELPA Syncer
Subject: [nongnu] elpa/bash-completion 23dbe5b537 276/313: Change minimum supported Emacs version from 24.1 to 24.3.
Date: Sat, 3 Dec 2022 10:59:37 -0500 (EST)

branch: elpa/bash-completion
commit 23dbe5b537239df4827c9e695642036e9dbfa729
Author: Stephane Zermatten <szermatt@gmx.net>
Commit: Stephane Zermatten <szermatt@gmx.net>

    Change minimum supported Emacs version from 24.1 to 24.3.
    
    24.3 is the oldest Emacs version that's tested, so it's unclear
    whether it still works under Emacs 24.1.
---
 README.md          | 2 +-
 bash-completion.el | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 9d61249578..f6b5244e24 100644
--- a/README.md
+++ b/README.md
@@ -137,5 +137,5 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for more details.
 ## COMPATIBILITY
 
 bash-completion.el is known to work with Bash 3, 4 and 5, on Emacs,
-starting with version 24.1, under Linux and OSX. It does not work on
+starting with version 24.3, under Linux and OSX. It does not work on
 XEmacs.
diff --git a/bash-completion.el b/bash-completion.el
index a30379cd94..4b48c8f7ab 100644
--- a/bash-completion.el
+++ b/bash-completion.el
@@ -7,7 +7,7 @@
 ;; Version: 3.0.0
 ;; Keywords: shell bash bash-completion
 ;; URL: http://github.com/szermatt/emacs-bash-completion
-;; Package-Requires: ((emacs "24.1"))
+;; Package-Requires: ((emacs "24.3"))
 
 ;; This program is free software: you can redistribute it and/or
 ;; modify it under the terms of the GNU General Public License as
@@ -140,7 +140,7 @@
 ;; COMPATIBILITY
 ;;
 ;; bash-completion.el is known to work with Bash 3 and 4, on Emacs,
-;; starting with version 24.1, under Linux and OSX. It does not work
+;; starting with version 24.3, under Linux and OSX. It does not work
 ;; on XEmacs.
 ;;
 
@@ -303,11 +303,11 @@ Bash processes.")
   "Regexp of characters that must be escaped or quoted.")
 
 (eval-when-compile
-  (unless (or (and (= emacs-major-version 24) (>= emacs-minor-version 1))
+  (unless (or (and (= emacs-major-version 24) (>= emacs-minor-version 3))
               (>= emacs-major-version 25))
     (error
      (concat
-      "Emacs version 24.1 or later is required to run emacs-bash-completion.\n"
+      "Emacs version 24.3 or later is required to run emacs-bash-completion.\n"
       "Download emacs-bash-completion version 2.1 to run on older Emacs "
       "versions, from 22 to 24."))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]