From 99607dd1ab66601d60b8b40d7aec02b3773a57b8 Mon Sep 17 00:00:00 2001 From: ueno Date: Mon, 24 Sep 2001 12:04:46 +0000 Subject: [PATCH] * mime-view.el (mime-preview-toggle-display): When both "type" and "*type" conditions are not specified, the entity should be regarded as invisible. --- mime-view.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mime-view.el b/mime-view.el index 582c81e..8d2bb16 100644 --- a/mime-view.el +++ b/mime-view.el @@ -1718,9 +1718,9 @@ If LINES is negative, scroll up LINES lines." (display) (t (setq display - (eq (cdr (or (assq sym situation) - (assq type situation))) - 'invisible)))) + (memq (cdr (or (assq sym situation) + (assq type situation))) + '(nil invisible))))) (setq situation (put-alist sym (if display 'visible 'invisible) -- 1.7.10.4