diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-14 20:24:03 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-14 20:24:03 +0200 |
commit | 9d84fcbef5439628df99c2022659a6eefb0a138e (patch) | |
tree | be366e5ef1a16e216cfb31246319a91069080141 /lisp/emacs-lisp/elint.el | |
parent | 284e6cf9a41a57ab44003713940c75891cda8f6a (diff) | |
download | emacs-9d84fcbef5439628df99c2022659a6eefb0a138e.tar.gz emacs-9d84fcbef5439628df99c2022659a6eefb0a138e.tar.bz2 emacs-9d84fcbef5439628df99c2022659a6eefb0a138e.zip |
Make elint understand condition-case-unless-debug
* lisp/emacs-lisp/elint.el (elint-special-forms): Teach elint
about `condition-case-unless-debug' (bug#29585).
Diffstat (limited to 'lisp/emacs-lisp/elint.el')
-rw-r--r-- | lisp/emacs-lisp/elint.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/elint.el b/lisp/emacs-lisp/elint.el index 4a539720168..6927921bdac 100644 --- a/lisp/emacs-lisp/elint.el +++ b/lisp/emacs-lisp/elint.el @@ -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) |