]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/eshell/esh-util.el (eshell-condition-case): Add debug declaration.
authorNoam Postavsky <npostavs@gmail.com>
Sat, 23 Sep 2017 14:04:36 +0000 (10:04 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Mon, 25 Sep 2017 23:39:19 +0000 (19:39 -0400)
lisp/eshell/esh-util.el

index c204ec869b5971ce2be9f64ffcfbe9cd1add0b6d..8b24ec3c4301e459fdf1c2fddbfc685d062c0f30 100644 (file)
@@ -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