aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Paul Wallington2005-01-12 22:49:19 +0000
committerJohn Paul Wallington2005-01-12 22:49:19 +0000
commit808882608af70b6993de814cba46ee23f74bcaca (patch)
tree44bc30cf5eaaa1a78e53a1d075ad8e578e52fe27
parent9deb0abaf8a49aa96d65cbf69091750a02a35159 (diff)
downloademacs-808882608af70b6993de814cba46ee23f74bcaca.tar.gz
emacs-808882608af70b6993de814cba46ee23f74bcaca.zip
(custom-declare-variable): Just put symbol instead of (defvar . symbol)
on `current-load-list'.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/custom.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9a8a56f2e64..c1840d8ead7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12005-01-12 Johan Bockg,Ae(Brd <bojohan@users.sourceforge.net>
2
3 * custom.el (custom-declare-variable): Just put symbol instead
4 of (defvar . symbol) on `current-load-list'.
5
12005-01-12 Reiner Steib <Reiner.Steib@gmx.de> 62005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
2 7
3 * emacs-lisp/elint.el: Fixed typo in Commentary section. 8 * emacs-lisp/elint.el: Fixed typo in Commentary section.
diff --git a/lisp/custom.el b/lisp/custom.el
index 5fea8c5d12d..e7aba88f72a 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -168,7 +168,7 @@ set to nil, as the value is no longer rogue."
168 ;; Do the actual initialization. 168 ;; Do the actual initialization.
169 (unless custom-dont-initialize 169 (unless custom-dont-initialize
170 (funcall initialize symbol default))) 170 (funcall initialize symbol default)))
171 (push (cons 'defvar symbol) current-load-list) 171 (push symbol current-load-list)
172 (run-hooks 'custom-define-hook) 172 (run-hooks 'custom-define-hook)
173 symbol) 173 symbol)
174 174