Make elint understand condition-case-unless-debug

* lisp/emacs-lisp/elint.el (elint-special-forms): Teach elint
about `condition-case-unless-debug' (bug#29585).
This commit is contained in:
Lars Ingebrigtsen 2019-07-14 20:24:03 +02:00
parent 284e6cf9a4
commit 9d84fcbef5

View file

@ -554,6 +554,7 @@ Return nil if there are no more forms, t otherwise."
(defcustom . elint-check-defcustom-form)
(macro . elint-check-macro-form)
(condition-case . elint-check-condition-case-form)
(condition-case-unless-debug . elint-check-condition-case-form)
(if . elint-check-conditional-form)
(when . elint-check-conditional-form)
(unless . elint-check-conditional-form)