Skip to content

Commit

Permalink
Ignore "obsolete" warnings Emacs Lisp
Browse files Browse the repository at this point in the history
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?
  • Loading branch information
greghendershott committed Oct 29, 2024
1 parent 187056d commit 1f95686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 1f95686

Please sign in to comment.