projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1924ea8
)
* net/tramp.el (with-tramp-progress-reporter): Add more traces.
author
Michael Albinus
<michael.albinus@gmx.de>
Mon, 2 Jun 2014 14:05:35 +0000
(16:05 +0200)
committer
Michael Albinus
<michael.albinus@gmx.de>
Mon, 2 Jun 2014 14:05:35 +0000
(16:05 +0200)
lisp/net/tramp.el
patch
|
blob
|
history
diff --git
a/lisp/net/tramp.el
b/lisp/net/tramp.el
index 9be0cbe10a97eff3055f1055c8068aa3b55f410b..d5678d826b62e67cf09a29d26974197608b8474a 100644
(file)
--- a/
lisp/net/tramp.el
+++ b/
lisp/net/tramp.el
@@
-1673,7
+1673,11
@@
without a visible progress reporter."
#'tramp-progress-reporter-update pr)))))))
(unwind-protect
;; Execute the body.
- (prog1 (progn ,@body) (setq cookie "done"))
+ (prog1
+ (condition-case err
+ (progn ,@body)
+ (error (tramp-message ,vec 6 "%s" (error-message-string err))))
+ (setq cookie "done"))
;; Stop progress reporter.
(if tm (tramp-compat-funcall 'cancel-timer tm))
(tramp-message ,vec ,level "%s...%s" ,message cookie)