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

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

[nongnu] elpa/package-lint d4ffcbd5e8 2/8: Add Emacs 29.4 to the CI matr


From: ELPA Syncer
Subject: [nongnu] elpa/package-lint d4ffcbd5e8 2/8: Add Emacs 29.4 to the CI matrix
Date: Thu, 19 Sep 2024 13:01:31 -0400 (EDT)

branch: elpa/package-lint
commit d4ffcbd5e84be09d53d8510ad23a79eec2810c65
Author: Steve Purcell <steve@sanityinc.com>
Commit: Steve Purcell <steve@sanityinc.com>

    Add Emacs 29.4 to the CI matrix
---
 .github/workflows/test.yml | 1 +
 tools/compat-dump          | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 65b9f8b177..fe9c0a9b92 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -29,6 +29,7 @@ jobs:
           - 29.1
           - 29.2
           - 29.3
+          - 29.4
           - release-snapshot
         experimental: [false]
         include:
diff --git a/tools/compat-dump b/tools/compat-dump
index a963545e19..f479aea1dc 100755
--- a/tools/compat-dump
+++ b/tools/compat-dump
@@ -20,9 +20,9 @@
                                         symbol-end)
                                     nil t)
         (pcase (match-string 1)
-          ("defvar" (push (intern (match-string 2)) symbols))
-          ((or "defun" "defmacro" "defalias") (push (intern (match-string 2)) 
functions))))))
+          ("defvar" (push (match-string 2) symbols))
+          ((or "defun" "defmacro" "defalias") (push (match-string 2) 
functions))))))
   (with-temp-buffer
-    (insert (prin1-to-string (cons symbols functions)))
+    (insert (prin1-to-string (mapcar 'intern (sort (append symbols functions) 
#'string<))))
     (write-region (point-min) (point-max) "data/compat-symbols"))
   (message "Wrote %d symbols and %d functions" (length symbols) (length 
functions)))



reply via email to

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