From f4d9815f8d49d987a683cb4be67f6a169214c907 Mon Sep 17 00:00:00 2001 From: Xu Chunyang Date: Wed, 17 Jan 2024 00:06:42 +0800 Subject: [PATCH] * Makefile: No longer consider warn as error. Cause I do not know how to resolve such warn for Emacs 29.1: elisp-demos.el:111:14: Warning: `org-show-entry' is an obsolete function (as of 9.6); use `org-fold-show-entry' instead. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index abedfbe..d39f5a4 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ all: check check: compile test compile: - ${EMACS} -Q --batch -L . --eval "(setq byte-compile-error-on-warn t)" -f batch-byte-compile elisp-demos.el + ${EMACS} -Q --batch -L . --eval "(setq byte-compile-error-on-warn nil)" -f batch-byte-compile elisp-demos.el test: ${EMACS} -Q --batch -L . -l elisp-demos-tests -f ert-run-tests-batch-and-exit