aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoam Postavsky2017-09-23 10:04:36 -0400
committerNoam Postavsky2017-09-25 19:39:19 -0400
commit66d35ae49dae8815910198586e277895671bd19b (patch)
treebd2984b94c6bcdab6ba3c2375a7829f92bbf3856
parentf5e72b04d930215f6e770e2fe9e02ad6debf03ad (diff)
downloademacs-66d35ae49dae8815910198586e277895671bd19b.tar.gz
emacs-66d35ae49dae8815910198586e277895671bd19b.zip
* lisp/eshell/esh-util.el (eshell-condition-case): Add debug declaration.
-rw-r--r--lisp/eshell/esh-util.el2
1 files changed, 1 insertions, 1 deletions
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'."
142(defmacro eshell-condition-case (tag form &rest handlers) 142(defmacro eshell-condition-case (tag form &rest handlers)
143 "If `eshell-handle-errors' is non-nil, this is `condition-case'. 143 "If `eshell-handle-errors' is non-nil, this is `condition-case'.
144Otherwise, evaluates FORM with no error handling." 144Otherwise, evaluates FORM with no error handling."
145 (declare (indent 2)) 145 (declare (indent 2) (debug (sexp form &rest form)))
146 (if eshell-handle-errors 146 (if eshell-handle-errors
147 `(condition-case-unless-debug ,tag 147 `(condition-case-unless-debug ,tag
148 ,form 148 ,form