From: morioka Date: Fri, 26 Jun 1998 07:10:48 +0000 (+0000) Subject: (make-mime-entity-internal): Abolish argument `encoding'. X-Git-Tag: chao-1_6_1-199811302358~3 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=0dcdb3f1b1709c73aace57206072c4f2eaa6686f;p=elisp%2Fflim.git (make-mime-entity-internal): Abolish argument `encoding'. (mime-entity-set-encoding-internal): New function. --- diff --git a/mime-def.el b/mime-def.el index c74f445..9c15293 100644 --- a/mime-def.el +++ b/mime-def.el @@ -186,10 +186,9 @@ header-start header-end body-start body-end &optional node-id - content-type encoding children) + content-type children) (vector buffer header-start header-end body-start body-end - node-id content-type nil encoding nil - children nil)) + node-id content-type nil nil nil children nil)) (defsubst mime-entity-buffer-internal (entity) (aref entity 0)) (defsubst mime-entity-header-start-internal (entity) (aref entity 1)) @@ -206,6 +205,8 @@ (defsubst mime-entity-set-content-disposition-internal (entity disposition) (aset entity 7 disposition)) +(defsubst mime-entity-set-encoding-internal (entity encoding) + (aset entity 8 encoding)) (defsubst mime-entity-set-original-header-internal (entity header) (aset entity 9 header)) (defsubst mime-entity-set-children-internal (entity children)