From 02d152d1667893116351c1d17225c8b15571186b Mon Sep 17 00:00:00 2001 From: yamaoka Date: Thu, 8 Oct 1998 22:48:55 +0000 Subject: [PATCH] * mime-def.el (mime-library-product): Enclose with `eval-and-compile'. * FLIM-CFG: Add "custom" to load-path. --- ChangeLog | 8 ++++++++ FLIM-CFG | 1 + mime-def.el | 6 ++++-- 3 files changed, 13 insertions(+), 2 deletions(-) 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)) -- 1.7.10.4