projects
/
elisp
/
semi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
af5d395
)
(mime-activate-mailcap-method): Check filename is null string.
author
morioka
<morioka>
Fri, 3 Jul 1998 15:26:41 +0000
(15:26 +0000)
committer
morioka
<morioka>
Fri, 3 Jul 1998 15:26:41 +0000
(15:26 +0000)
mime-play.el
patch
|
blob
|
history
diff --git
a/mime-play.el
b/mime-play.el
index
106ef8b
..
480bad5
100644
(file)
--- a/
mime-play.el
+++ b/
mime-play.el
@@
-206,7
+206,7
@@
specified, play as it. Default MODE is \"play\"."
(let ((method (cdr (assoc 'method situation)))
(name (mime-entity-safe-filename entity)))
(setq name
- (if name
+ (if (and name (not (string= name "")))
(expand-file-name name mime-temp-directory)
(make-temp-name
(expand-file-name "EMI" mime-temp-directory))