From e7bc9b4c394f7739489e77bc40d78e509f405693 Mon Sep 17 00:00:00 2001 From: Katsumi Yamaoka Date: Fri, 26 Nov 2004 09:12:39 +0000 Subject: [PATCH] Fix previous commit. --- lisp/spam.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/spam.el b/lisp/spam.el index 667dc8abb..976c2c170 100644 --- a/lisp/spam.el +++ b/lisp/spam.el @@ -2023,7 +2023,6 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details." (eval-when-compile (autoload 'bbdb-buffer "bbdb") (autoload 'bbdb-create-internal "bbdb") - (autoload 'bbdb-records "bbdb") (autoload 'bbdb-search-simple "bbdb")) (eval-and-compile @@ -2032,6 +2031,9 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details." (require 'bbdb) (require 'bbdb-com)) (file-error + ;; `bbdb-records' should not be bound as an autoload function + ;; before loading bbdb because of `bbdb-hashtable-size'. + (defalias 'bbdb-records 'ignore) (defalias 'spam-BBDB-register-routine 'ignore) (defalias 'spam-enter-ham-BBDB 'ignore) nil)) -- 2.34.1