* lisp/eshell/esh-util.el (eshell-condition-case): Doc fix.
authorGlenn Morris <rgm@gnu.org>
Thu, 10 Mar 2011 07:16:04 +0000 (23:16 -0800)
committerGlenn Morris <rgm@gnu.org>
Thu, 10 Mar 2011 07:16:04 +0000 (23:16 -0800)
lisp/ChangeLog
lisp/eshell/esh-util.el

index bd8bf93..0499954 100644 (file)
@@ -1,5 +1,7 @@
 2011-03-10  Glenn Morris  <rgm@gnu.org>
 
+       * eshell/esh-util.el (eshell-condition-case): Doc fix.
+
        * cus-edit.el (Custom-newline): If no button at point, look
        for a subgroup button at start-of-line.  (Bug#2298)
 
index dbe4f82..424d246 100644 (file)
@@ -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