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:
05abd2f
)
* mime-view.el (mime-preview-toggle-display): When both "type" and
author
ueno
<ueno>
Mon, 24 Sep 2001 12:04:46 +0000
(12:04 +0000)
committer
ueno
<ueno>
Mon, 24 Sep 2001 12:04:46 +0000
(12:04 +0000)
"*type" conditions are not specified, the entity should be regarded
as invisible.
mime-view.el
patch
|
blob
|
history
diff --git
a/mime-view.el
b/mime-view.el
index
582c81e
..
8d2bb16
100644
(file)
--- 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)