summaryrefslogtreecommitdiff
path: root/lisp/cus-dep.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-09-21 20:00:30 +0000
committerRichard M. Stallman <rms@gnu.org>2002-09-21 20:00:30 +0000
commit4e189812e9890ff3aa7e413d1be896227d246ce1 (patch)
tree69e116913660cfe6355f7842aac6a9e407039ebd /lisp/cus-dep.el
parent6da43544b7dec950f301216c66a6aa516a49b70b (diff)
downloademacs-4e189812e9890ff3aa7e413d1be896227d246ce1.tar.gz
(custom-make-dependencies): Bind to t around evaluating the def-form.
Diffstat (limited to 'lisp/cus-dep.el')
-rw-r--r--lisp/cus-dep.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el
index 19ae727b2dd..d7fd848a9ab 100644
--- a/lisp/cus-dep.el
+++ b/lisp/cus-dep.el
@@ -66,7 +66,7 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS"
(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))