From 1f9568608c9bccc1a4fb985eb5e28fa0f7a74cbd Mon Sep 17 00:00:00 2001 From: Greg Hendershott Date: Tue, 29 Oct 2024 12:12:34 -0400 Subject: [PATCH] Ignore "obsolete" warnings Emacs Lisp This is to work around an "if-let is obsolete use if-let* instead" warning on Emacs snapshot. My understanding is that will be resolved and we can revert this commit, soon -- which I think would be good because we probably want such warnings when not false alarms? --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 84c25c86..801062a9 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ batch-emacs := \ byte-compile := \ $(batch-emacs) \ -l bytecomp \ - --eval '(setq byte-compile-warnings t)' \ + --eval '(setq byte-compile-warnings (quote (not obsolete)))' \ --eval '(setq byte-compile-error-on-warn t)' \ -f batch-byte-compile