inline Content-Disposition.
+2000-01-28  Yoshiki Hayashi  <yoshiki@xemacs.org>
+
+       * mime-view.el (mime-display-entity): Fix handling of
+       inline Content-Disposition.
+
 2000-01-20  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
 
        * mime-edit.el (mime-edit-user-agent-value): Add apel-version.
 
                   (memq (mime-view-entity-type/subtype entity)
                         mime-view-force-inline-types)
                   ;; whether Content-Disposition header exists.
-                  (not (and
-                        (mime-entity-content-disposition entity)
-                        (eq 'inline
-                            (mime-content-disposition-type
-                             (mime-entity-content-disposition entity)))))))
+                  (and
+                   (mime-entity-content-disposition entity)
+                   (eq 'inline
+                       (mime-content-disposition-type
+                        (mime-entity-content-disposition entity))))))
          ;; This is attachment
          (setq header-is-visible nil
                body-is-visible nil))