branch: externals/compat commit 98f913f743dafce4ed318c31753f7823df45700f Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
Test emacs-29 branch --- .github/workflows/makefile.yml | 1 + Makefile | 2 +- compat-tests.el | 14 +++++++------- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 3ba1d8886b..e3a618e7b8 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 4d2cd4e92f..04cf8ea01d 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 e6f1aa8b94..a3c1a8509e 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: