aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2011-03-09 23:16:04 -0800
committerGlenn Morris <[email protected]>2011-03-09 23:16:04 -0800
commitb2f603cc420af9f07bc9ce27b96256255009c506 (patch)
tree11be5ded1b7800264c9b8f912ad1b523a1d88c03 /lisp/eshell
parent62d94509e2c148bf5ebc62e9c83b89b9f0d9df7a (diff)
* lisp/eshell/esh-util.el (eshell-condition-case): Doc fix.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-util.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el
index dbe4f824de..424d246a2b 100644
--- a/lisp/eshell/esh-util.el
+++ b/lisp/eshell/esh-util.el
@@ -138,7 +138,8 @@ function `string-to-number'."
(memq system-type '(ms-dos windows-nt)))
(defmacro eshell-condition-case (tag form &rest handlers)
- "Like `condition-case', but only if `eshell-pass-through-errors' is nil."
+ "If `eshell-handle-errors' is non-nil, this is `condition-case'.
+Otherwise, evaluates FORM with no error handling."
(if eshell-handle-errors
`(condition-case ,tag
,form