emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103614: * lisp/eshell/esh-util.el (e


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103614: * lisp/eshell/esh-util.el (eshell-condition-case): Doc fix.
Date: Wed, 09 Mar 2011 23:16:04 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103614
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2011-03-09 23:16:04 -0800
message:
  * lisp/eshell/esh-util.el (eshell-condition-case): Doc fix.
modified:
  lisp/ChangeLog
  lisp/eshell/esh-util.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-03-10 03:44:33 +0000
+++ b/lisp/ChangeLog    2011-03-10 07:16:04 +0000
@@ -1,5 +1,7 @@
 2011-03-10  Glenn Morris  <address@hidden>
 
+       * 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)
 

=== modified file 'lisp/eshell/esh-util.el'
--- a/lisp/eshell/esh-util.el   2011-03-05 20:07:27 +0000
+++ b/lisp/eshell/esh-util.el   2011-03-10 07:16:04 +0000
@@ -138,7 +138,8 @@
   (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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]