Hello,

I have been bitten more than once by non-nil default values in hook
variables such as:

(defcustom bbdb-create-hook 'bbdb-creation-date
  :group 'bbdb
  :type 'hook)

Then if one does

(add-hook 'bbdb-create-hook 'bbdb-add-uuid) in one's .emacs, the default
value may be ignored.

I suggest change all these defcustom instances something like:

(defcustom bbdb-create-hook nil
  :group 'bbdb
  :type 'hook)
(add-hook 'bbdb-create-hook 'bbdb-creation-date)

Leo


------------------------------------------------------------------------------
Benefiting from Server Virtualization: Beyond Initial Workload 
Consolidation -- Increasing the use of server virtualization is a top
priority.Virtualization can reduce costs, simplify management, and improve 
application availability and disaster protection. Learn more about boosting 
the value of server virtualization. http://p.sf.net/sfu/vmware-sfdev2dev
_______________________________________________
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

Reply via email to