aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2023-01-13 20:00:37 +0100
committerDaniel Mendler <mail@daniel-mendler.de>2023-01-13 20:02:15 +0100
commit98f913f743dafce4ed318c31753f7823df45700f (patch)
tree549a34b96f739a78c99b7e297a49d7a253549688
parentfa70e72f92985aeb99473d03770bd0404afcae5f (diff)
Test emacs-29 branch
-rw-r--r--.github/workflows/makefile.yml1
-rw-r--r--Makefile2
-rw-r--r--compat-tests.el14
3 files changed, 9 insertions, 8 deletions
diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml
index 3ba1d88..e3a618e 100644
--- a/.github/workflows/makefile.yml
+++ b/.github/workflows/makefile.yml
@@ -31,6 +31,7 @@ jobs:
- '27.2'
- '28.1'
- '28.2'
+ - 'release-snapshot'
- 'snapshot'
steps:
- uses: actions/checkout@v3
diff --git a/Makefile b/Makefile
index 4d2cd4e..04cf8ea 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ $(BYTEC): compat-macs.el
.el.elc:
@echo "Compiling $<"
@$(EMACS) -Q --batch -L . \
- --eval '(setq byte-compile-error-on-warn (< emacs-major-version 29))' \
+ --eval '(setq byte-compile-error-on-warn (< emacs-major-version 30))' \
-f batch-byte-compile $<
compat.info: compat.texi
diff --git a/compat-tests.el b/compat-tests.el
index e6f1aa8..a3c1a85 100644
--- a/compat-tests.el
+++ b/compat-tests.el
@@ -19,20 +19,20 @@
;; Tests for compatibility functions from compat.el.
;;
-;; Note that not all functions have tests yet. Grep the Compat code for
-;; <UNTESTED> labels. If you intend to use a function, which doesn't have
-;; tests yet, please contribute tests here. NO GUARANTEES ARE MADE FOR
+;; Note that not all functions have tests yet. Grep the Compat code for
+;; <UNTESTED> labels. If you intend to use a function, which doesn't have
+;; tests yet, please contribute tests here. NO GUARANTEES ARE MADE FOR
;; FUNCTIONS WITHOUT TESTS.
-;; The tests are written in a simple, explicit style. Please inspect the
-;; tests in order to find out the supported calling conventions. In
+;; The tests are written in a simple, explicit style. Please inspect the
+;; tests in order to find out the supported calling conventions. In
;; particular, note the use of `compat-call' to call functions, where the
;; calling convention or behavior changed between Emacs versions.
;; The functions tested here are guaranteed to work on the Emacs versions
;; tested by continuous integration. This includes 24.4, 24.5, 25.1, 25.2,
-;; 25.3, 26.1, 26.2, 26.3, 27.1, 27.2, 28.1, 28.2 and the current Emacs
-;; master branch.
+;; 25.3, 26.1, 26.2, 26.3, 27.1, 27.2, 28.1, 28.2, 29.1 and the current
+;; Emacs master branch.
;;; Code: