emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 9d84fcb: Make elint understand condition-case-unles


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 9d84fcb: Make elint understand condition-case-unless-debug
Date: Sun, 14 Jul 2019 14:24:13 -0400 (EDT)

branch: master
commit 9d84fcbef5439628df99c2022659a6eefb0a138e
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Make elint understand condition-case-unless-debug
    
    * lisp/emacs-lisp/elint.el (elint-special-forms): Teach elint
    about `condition-case-unless-debug' (bug#29585).
---
 lisp/emacs-lisp/elint.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/emacs-lisp/elint.el b/lisp/emacs-lisp/elint.el
index 4a53972..6927921 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]