Skip to content

Commit 4a7fb9a

Browse files
committed
If + progn => when in the Makefile
1 parent 459964b commit 4a7fb9a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ GIT_VERSION = $(shell git describe --tags --match 'v[0-9]*' --long --dirty | sed
33

44
INSTALL_INFO = install-info
55
EMACS = emacs
6-
EFLAGS = --eval "(if (< emacs-major-version 24) \
7-
(progn (add-to-list 'load-path (expand-file-name \"tests/compat\")) \
8-
(setq byte-compile-warnings '(not cl-functions))))" \
6+
EFLAGS = --eval "(when (< emacs-major-version 24) \
7+
(add-to-list 'load-path (expand-file-name \"tests/compat\")) \
8+
(setq byte-compile-warnings '(not cl-functions)))" \
99
--eval '(setq byte-compile-error-on-warn t)'
1010

1111
BATCH = $(EMACS) $(EFLAGS) --batch -Q -L .

0 commit comments

Comments
 (0)