(make-mime-entity-internal): Abolish argument `encoding'.
authormorioka <morioka>
Fri, 26 Jun 1998 07:10:48 +0000 (07:10 +0000)
committermorioka <morioka>
Fri, 26 Jun 1998 07:10:48 +0000 (07:10 +0000)
(mime-entity-set-encoding-internal): New function.

mime-def.el

index c74f445..9c15293 100644 (file)
                                     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))
 
 (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)