diff options
author | Glenn Morris <rgm@gnu.org> | 2011-03-09 23:16:04 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-03-09 23:16:04 -0800 |
commit | b2f603cc420af9f07bc9ce27b96256255009c506 (patch) | |
tree | 11be5ded1b7800264c9b8f912ad1b523a1d88c03 /lisp/eshell | |
parent | 62d94509e2c148bf5ebc62e9c83b89b9f0d9df7a (diff) | |
download | emacs-b2f603cc420af9f07bc9ce27b96256255009c506.tar.gz |
* lisp/eshell/esh-util.el (eshell-condition-case): Doc fix.
Diffstat (limited to 'lisp/eshell')
-rw-r--r-- | lisp/eshell/esh-util.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el index dbe4f824deb..424d246a2b6 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 |