emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-26 66d35ae 3/5: * lisp/eshell/esh-util.el (eshell-co


From: Noam Postavsky
Subject: [Emacs-diffs] emacs-26 66d35ae 3/5: * lisp/eshell/esh-util.el (eshell-condition-case): Add debug declaration.
Date: Mon, 25 Sep 2017 19:40:15 -0400 (EDT)

branch: emacs-26
commit 66d35ae49dae8815910198586e277895671bd19b
Author: Noam Postavsky <address@hidden>
Commit: Noam Postavsky <address@hidden>

    * lisp/eshell/esh-util.el (eshell-condition-case): Add debug declaration.
---
 lisp/eshell/esh-util.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el
index c204ec8..8b24ec3 100644
--- a/lisp/eshell/esh-util.el
+++ b/lisp/eshell/esh-util.el
@@ -142,7 +142,7 @@ function `string-to-number'."
 (defmacro eshell-condition-case (tag form &rest handlers)
   "If `eshell-handle-errors' is non-nil, this is `condition-case'.
 Otherwise, evaluates FORM with no error handling."
-  (declare (indent 2))
+  (declare (indent 2) (debug (sexp form &rest form)))
   (if eshell-handle-errors
       `(condition-case-unless-debug ,tag
           ,form



reply via email to

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