From: Noam Postavsky Date: Sat, 23 Sep 2017 14:04:36 +0000 (-0400) Subject: * lisp/eshell/esh-util.el (eshell-condition-case): Add debug declaration. X-Git-Tag: emacs-26.0.90~104^2~15 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=66d35ae49dae8815910198586e277895671bd19b;p=emacs.git * lisp/eshell/esh-util.el (eshell-condition-case): Add debug declaration. --- diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el index c204ec869b5..8b24ec3c430 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