changeset 59507:359397c57b70

(custom-declare-variable): Just put symbol instead of (defvar . symbol) on `current-load-list'.
author John Paul Wallington <jpw@pobox.com>
date Wed, 12 Jan 2005 22:48:19 +0000
parents 3da5314608ab
children c1041cf3aadb
files lisp/custom.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)