emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

custom and the new load-history format


From: Johan Bockgård
Subject: custom and the new load-history format
Date: Wed, 12 Jan 2005 23:05:28 +0100
User-agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50

The recent changes to load-history format have made variables defined
with `defcustom' no longer being found by `symbol-file' (with TYPE
`defvar'). I believe this fixes it.


--- custom.el   10 Jan 2005 15:49:43 +0100      1.77
+++ custom.el   12 Jan 2005 22:29:40 +0100      
@@ -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)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]