Hi. Some autoload commands were stored in an eval-when-compile command. On FSF emacs, at least, that means the autoload commands aren't evaluated when the .elc file is loaded. Here is a patch that moves those autoload commands outside the eval-when-compile: athena% cvs diff -c bbdb.el Index: bbdb.el =================================================================== RCS file: /cvsroot/bbdb/bbdb/lisp/bbdb.el,v retrieving revision 1.113 diff -c -r1.113 bbdb.el *** bbdb.el 2000/08/28 21:14:22 1.113 --- bbdb.el 2000/09/06 16:34:44 *************** *** 84,94 **** (eval-when-compile ; pacify the compiler (defvar bbdb-address-print-formatting-alist) ; "bbdb-print" (defvar mail-mode-map) ; "sendmail" - (autoload 'widget-group-match "wid-edit") - (autoload 'Electric-pop-up-window "electric") - (autoload 'Electric-command-loop "electric") - (autoload 'bbdb-snarf-nice-real-name "bbdb-snarf") ) ;; Make custom stuff work even without customize ;; Courtesy of Hrvoje Niksic <[EMAIL PROTECTED]> --- 84,96 ---- (eval-when-compile ; pacify the compiler (defvar bbdb-address-print-formatting-alist) ; "bbdb-print" (defvar mail-mode-map) ; "sendmail" ) + + (autoload 'widget-group-match "wid-edit") + (autoload 'Electric-pop-up-window "electric") + (autoload 'Electric-command-loop "electric") + (autoload 'bbdb-snarf-nice-real-name "bbdb-snarf") + ;; Make custom stuff work even without customize ;; Courtesy of Hrvoje Niksic <[EMAIL PROTECTED]> Alex. _______________________________________________ bbdb-info mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/mailman/listinfo/bbdb-info
