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

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

[elpa] externals/compat e532a5d4d5 1/2: Update Emacs version to 29.1


From: ELPA Syncer
Subject: [elpa] externals/compat e532a5d4d5 1/2: Update Emacs version to 29.1
Date: Sun, 23 Jul 2023 06:57:53 -0400 (EDT)

branch: externals/compat
commit e532a5d4d5f12964a21dd7a69b142562051919e4
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Update Emacs version to 29.1
    
    See emacs-29 branch commit 7d1737071fba1fd83039aac34f34f6b90c9579b8
---
 Makefile     | 2 +-
 compat-29.el | 6 ++----
 compat.el    | 3 +--
 3 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/Makefile b/Makefile
index 64bfd6443e..7dd9e1ec32 100644
--- a/Makefile
+++ b/Makefile
@@ -43,7 +43,7 @@ $(BYTEC): compat-macs.el
 .el.elc:
        @echo "Compiling $<"
        @$(EMACS) -Q --batch -L . \
-               --eval '(setq compat-strict t byte-compile-error-on-warn t)' \
+               --eval '(setq compat-strict (< emacs-major-version 29) 
byte-compile-error-on-warn t)' \
                -f batch-byte-compile $<
 
 compat.info: compat.texi
diff --git a/compat-29.el b/compat-29.el
index b02424bead..675d2c76cd 100644
--- a/compat-29.el
+++ b/compat-29.el
@@ -25,11 +25,9 @@
 (compat-require compat-28 "28.1")
 
 ;; Preloaded in loadup.el
-;; TODO Update to 29.1 as soon as the Emacs emacs-29 branch version bumped
-(compat-require seq "29.0.90") ;; <compat-tests:seq>
+(compat-require seq "29.1") ;; <compat-tests:seq>
 
-;; TODO Update to 29.1 as soon as the Emacs emacs-29 branch version bumped
-(compat-version "29.0.90")
+(compat-version "29.1")
 
 ;;;; Defined in startup.el
 
diff --git a/compat.el b/compat.el
index 646ad994e2..2da7bb4de3 100644
--- a/compat.el
+++ b/compat.el
@@ -50,8 +50,7 @@
 ;; time and runtime, but only if needed.
 (eval-when-compile
   (defmacro compat--maybe-require-29 ()
-    ;; TODO Update to 29.1 as soon as the Emacs emacs-29 branch version bumped
-    (when (version< emacs-version "29.0.90")
+    (when (< emacs-major-version 29)
       (require 'compat-29)
       '(require 'compat-29))))
 (compat--maybe-require-29)



reply via email to

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