From 4950b395b89ae08c8e9a9b140622ca5b60c1ed7c Mon Sep 17 00:00:00 2001 From: morioka Date: Fri, 3 Jul 1998 15:26:41 +0000 Subject: [PATCH] (mime-activate-mailcap-method): Check filename is null string. --- mime-play.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mime-play.el b/mime-play.el index 106ef8b..480bad5 100644 --- 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)) -- 1.7.10.4