* lisp/eshell/esh-util.el (eshell-condition-case): Add debug declaration.

This commit is contained in:
Noam Postavsky 2017-09-23 10:04:36 -04:00
parent f5e72b04d9
commit 66d35ae49d

View 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