projects
/
mymail.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
98ce451
)
Prints the content of /tmp/mymail.err in case of error.
author
Francois Fleuret
<francois@fleuret.org>
Sun, 15 Feb 2015 20:55:35 +0000
(21:55 +0100)
committer
Francois Fleuret
<francois@fleuret.org>
Sun, 15 Feb 2015 20:55:35 +0000
(21:55 +0100)
mymail-vm.el
patch
|
blob
|
history
diff --git
a/mymail-vm.el
b/mymail-vm.el
index
08c41ad
..
2fbd8cd
100644
(file)
--- a/
mymail-vm.el
+++ b/
mymail-vm.el
@@
-96,5
+96,12
@@
prefaced with \\."
search-args))
0)
(vm-visit-folder mbox-name t)
- (message "mymail failed. See /tmp/mymail.err"))
+
+ ;; (message "mymail failed. See /tmp/mymail.err"))
+
+ (message (with-temp-buffer
+ (insert-file-contents "/tmp/mymail.err")
+ (replace-string "\n" " ")
+ (buffer-string)))
+ )
))