# HG changeset patch # User John Paul Wallington # Date 1105570099 0 # Node ID 359397c57b70c3b24a8d14d50696846433631843 # Parent 3da5314608ab7822b70e7ea11f16600e30877cb5 (custom-declare-variable): Just put symbol instead of (defvar . symbol) on `current-load-list'. diff -r 3da5314608ab -r 359397c57b70 lisp/custom.el --- a/lisp/custom.el Wed Jan 12 16:07:42 2005 +0000 +++ b/lisp/custom.el Wed Jan 12 22:48:19 2005 +0000 @@ -168,7 +168,7 @@ ;; Do the actual initialization. (unless custom-dont-initialize (funcall initialize symbol default))) - (push (cons 'defvar symbol) current-load-list) + (push symbol current-load-list) (run-hooks 'custom-define-hook) symbol)