+2002-09-21 Richard M. Stallman <rms@gnu.org>
+
+ * cus-dep.el (custom-make-dependencies): Bind to t
+ around evaluating the def-form.
+
+ * custom.el (custom-dont-initialize): New variable.
+ (custom-declare-variable): Don't init the variable
+ if custom-dont-initialize is non-nil.
+
2002-09-21 John Paul Wallington <jpw@shootybangbang.com>
* net/eudc.el (eudc-install-menu): Use `define-key' and
(setq is-autoloaded t)))
(let ((expr (read (current-buffer))))
(condition-case nil
- (progn
+ (let ((custom-dont-initialize t))
(eval expr)
(put (nth 1 expr) 'custom-autoloaded is-autoloaded)
(put (nth 1 expr) 'custom-where name))