Mercurial > emacs
changeset 47571:c26abde8fcad
(custom-make-dependencies): Bind to t around evaluating the def-form.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 21 Sep 2002 20:00:20 +0000 |
parents | b65cc673fb00 |
children | c8b217797196 |
files | lisp/cus-dep.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/cus-dep.el Sat Sep 21 19:59:42 2002 +0000 +++ b/lisp/cus-dep.el Sat Sep 21 20:00:20 2002 +0000 @@ -66,7 +66,7 @@ (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))