From: morioka Date: Mon, 17 Mar 1997 13:35:07 +0000 (+0000) Subject: Variable `mime-view-content-button-ignored-ctype-list' was abolished. X-Git-Tag: Hokutetsu-Ishikawa-new~87 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=973170c9b3f606504dc8813090d06f9d0dfc89a3;p=elisp%2Fsemi.git Variable `mime-view-content-button-ignored-ctype-list' was abolished. --- diff --git a/mime-view.el b/mime-view.el index c44d719..b129e39 100644 --- a/mime-view.el +++ b/mime-view.el @@ -6,7 +6,7 @@ ;; Created: 1994/7/13 ;; Renamed: 1994/8/31 from tm-body.el ;; Renamed: 1997/02/19 from tm-view.el -;; Version: $Revision: 0.42 $ +;; Version: $Revision: 0.43 $ ;; Keywords: MIME, multimedia, mail, news ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces). @@ -40,7 +40,7 @@ ;;; (defconst mime-view-RCS-ID - "$Id: mime-view.el,v 0.42 1997-03-17 13:32:52 morioka Exp $") + "$Id: mime-view.el,v 0.43 1997-03-17 13:35:07 morioka Exp $") (defconst mime-view-version (get-version-string mime-view-RCS-ID)) @@ -148,9 +148,6 @@ "*List of media-types to be able to display in MIME-View buffer. Each elements are string of TYPE/SUBTYPE, e.g. \"text/plain\".") -(defvar mime-view-content-button-ignored-ctype-list - '("application/x-selection")) - (defvar mime-view-content-button-visible-ctype-list '("application/pgp")) @@ -284,11 +281,9 @@ Each elements are regexp of field-name. [mime-view.el]") (rcnum cinfo ctype params subj encoding) "Insert entity button conditionally." (if (and (consp rcnum) - (not (member - ctype - mime-view-content-button-ignored-ctype-list))) - (mime-view-insert-entity-button - rcnum cinfo ctype params subj encoding) + (not (string= ctype "application/x-selection")) + ) + (mime-view-insert-entity-button rcnum cinfo ctype params subj encoding) ))