From 70e00eaa120cb46b364bc594df4b90514a497992 Mon Sep 17 00:00:00 2001 From: morioka Date: Tue, 10 Mar 1998 06:31:52 +0000 Subject: [PATCH] tm 7.95. --- mu-bbdb.el | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/mu-bbdb.el b/mu-bbdb.el index 197ee09..af5877c 100644 --- a/mu-bbdb.el +++ b/mu-bbdb.el @@ -3,7 +3,7 @@ ;; Copyright (C) 1996 Shuhei KOBAYASHI ;; Author: Shuhei KOBAYASHI -;; Version: $Id: mu-bbdb.el,v 3.1 1996/08/18 07:19:53 morioka Exp $ +;; Version: $Id: mu-bbdb.el,v 3.2 1996/11/22 08:44:27 shuhei-k Exp $ ;; This file is part of tl (Tiny Library). @@ -38,7 +38,14 @@ ;;; Code: (require 'mu-cite) -(require 'bbdb) +(if (not (fboundp 'eval-when)) + (require 'bbdb) + (eval-when (compile) + (ignore-errors + (require 'bbdb))) + (eval-when (load eval) + (require 'bbdb)) + ) (defvar mu-bbdb-load-hook nil "*List of functions called after mu-bbdb is loaded.") -- 1.7.10.4