Skip to content

Commit 2f22cc5

Browse files
committed
Support Emacs 26.1 again
Since [1: 1ebac69] Emacs 26.1 effectively wasn't supported anymore and [2: fa83e81] made that formal, but we should support that release at least a while longer, which do by using the Compat package. 1: 2023-07-18 1ebac69 package-recipe-validate-all: Report progress 2: 2023-12-24 fa83e81 Fix CI build by requiring a newer Emacs
1 parent c48aa07 commit 2f22cc5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ include default.mk
33

44
.PHONY: test
55

6+
# https://github.com/emacscollective/workflows/blob/main/bin/install-deps
7+
# expects this to find this in this file.
8+
DEPS = compat
9+
610
all: lisp
711

812
help:

default.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ELS += package-build.el
88
ELS += package-recipe-mode.el
99
ELCS = $(ELS:.el=.elc)
1010

11-
DEPS =
11+
DEPS = compat
1212

1313
VERSION ?= $(shell test -e $(TOP).git && git describe --tags --abbrev=0 | cut -c2-)
1414

package-build.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
;; Keywords: maint tools
1414

1515
;; Package-Version: 4.0.0.50-git
16-
;; Package-Requires: ((emacs "27.1"))
16+
;; Package-Requires: ((emacs "26.1") (compat "27.1"))
1717

1818
;; SPDX-License-Identifier: GPL-3.0-or-later
1919

0 commit comments

Comments
 (0)