emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r117233: * net/tramp.el (with-tramp-progress-reporte


From: Michael Albinus
Subject: [Emacs-diffs] trunk r117233: * net/tramp.el (with-tramp-progress-reporter): Complete previous patch.
Date: Mon, 02 Jun 2014 14:17:13 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117233
revision-id: address@hidden
parent: address@hidden
committer: Michael Albinus <address@hidden>
branch nick: trunk
timestamp: Mon 2014-06-02 16:17:07 +0200
message:
  * net/tramp.el (with-tramp-progress-reporter): Complete previous patch.
modified:
  lisp/net/tramp.el              tramp.el-20091113204419-o5vbwnq5f7feedwu-2427
=== modified file 'lisp/net/tramp.el'
--- a/lisp/net/tramp.el 2014-06-02 14:05:35 +0000
+++ b/lisp/net/tramp.el 2014-06-02 14:17:07 +0000
@@ -1676,7 +1676,10 @@
            (prog1
               (condition-case err
                   (progn ,@body)
-                (error (tramp-message ,vec 6 "%s" (error-message-string err))))
+                (error
+                 (tramp-message ,vec 6 "%s" (error-message-string err))
+                 ;; Propagate the error.
+                 (signal (car err) (cdr err))))
             (setq cookie "done"))
          ;; Stop progress reporter.
          (if tm (tramp-compat-funcall 'cancel-timer tm))


reply via email to

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