diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-09-21 20:00:20 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-09-21 20:00:20 +0000 |
commit | 80ce46c26d9bcb8a8cdd8e3f10f928dcae1353ad (patch) | |
tree | aa87697f46147e1d21c6d0b35f5bad8ee141023f /lisp/cus-dep.el | |
parent | 4bf091b78c41c7e555e99b203f6c819f0826a3a7 (diff) | |
download | emacs-80ce46c26d9bcb8a8cdd8e3f10f928dcae1353ad.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.el | 2 |
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)) |