From: yamaoka Date: Thu, 8 Oct 1998 22:48:55 +0000 (+0000) Subject: * mime-def.el (mime-library-product): Enclose with X-Git-Tag: flim-1_10_3~14 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=02d152d1667893116351c1d17225c8b15571186b;p=elisp%2Fflim.git * mime-def.el (mime-library-product): Enclose with `eval-and-compile'. * FLIM-CFG: Add "custom" to load-path. --- diff --git a/ChangeLog b/ChangeLog index 47d16a5..808e2ab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +1998-10-09 Katsumi Yamaoka + + * mime-def.el (mime-library-product): Enclose with + `eval-and-compile'. + + * FLIM-CFG: Add "custom" to load-path. + + 1998-10-08 MORIOKA Tomohiko * FLIM: Version 1.10.2 (Kintetsu-Miyazu) was released. diff --git a/FLIM-CFG b/FLIM-CFG index 37ddd2a..0d13317 100644 --- a/FLIM-CFG +++ b/FLIM-CFG @@ -18,6 +18,7 @@ (require 'install) +(add-path "custom") (add-path default-directory) (or (fboundp 'write-region-as-binary) diff --git a/mime-def.el b/mime-def.el index eb9d3a6..0c3d03b 100644 --- a/mime-def.el +++ b/mime-def.el @@ -24,8 +24,10 @@ ;;; Code: -(defconst mime-library-product ["FLIM" (1 10 2) "Kintetsu-Miyazu"] - "Product name, version number and code name of MIME-library package.") +(eval-and-compile + (defconst mime-library-product ["FLIM" (1 10 2) "Kintetsu-Miyazu"] + "Product name, version number and code name of MIME-library package.") + ) (defmacro mime-product-name (product) `(aref ,product 0))