X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=mime-def.el;h=35bda0dfc8d9e4a11b97ed383a20789592b268d4;hb=3562dd8af8e3c46cb7abf276cedfbe7a117b179c;hp=ba62c8b9ab0cc7a1b7a945028954866763757fb7;hpb=ddb66fe9fd30b8cda6732c492a3aa6bcdab2fe3a;p=elisp%2Fflim.git diff --git a/mime-def.el b/mime-def.el index ba62c8b..35bda0d 100644 --- a/mime-def.el +++ b/mime-def.el @@ -32,10 +32,8 @@ (require 'mcharset) (require 'alist) -(eval-when-compile (require 'cl)) ; list* - (eval-and-compile - (defconst mime-library-product ["CLIME" (1 13 2) "額田部"] + (defconst mime-library-product ["CLIME" (1 13 3) "平端"] "Product name, version number and code name of MIME-library package.") ) @@ -51,7 +49,7 @@ (defconst mime-library-version (eval-when-compile (concat (mime-product-name mime-library-product) " " - (mapconcat (function number-to-string) + (mapconcat (function int-to-string) (mime-product-version mime-library-product) ".") " - \"" (mime-product-code-name mime-library-product) "\""))) @@ -155,10 +153,9 @@ ;;; (defsubst make-mime-content-type (type subtype &optional parameters) - (list* (cons 'type type) - (cons 'subtype subtype) - (nreverse parameters)) - ) + (cons (cons 'type type) + (cons (cons 'subtype subtype) + (nreverse parameters)))) (defsubst mime-content-type-primary-type (content-type) "Return primary-type of CONTENT-TYPE."