(custom-set-variables): Don't test `custom-requests'

properties, check the third element of the options passed to
custom-set-variables instead.
This commit is contained in:
Gerd Moellmann 2001-08-03 15:12:39 +00:00
parent 5e1f85e0af
commit be48584dab
2 changed files with 6 additions and 2 deletions

View file

@ -1,7 +1,11 @@
2001-08-03 Gerd Moellmann <gerd@gnu.org>
* custom.el (custom-set-variables): Don't test `custom-requests'
properties, check the third element of the options passed to
custom-set-variables instead.
* info.el (info-insert-file-contents): Use info-file-exists-p
instread of file-exists-p.
instead of file-exists-p.
* play/zone.el (zone-pgm-stress): Use unwind-protect to make sure
the mode-line face is restored. Fix several bugs.

View file

@ -451,7 +451,7 @@ COMMENT is a comment string about SYMBOL."
;; that the mode function will see other
;; customized values rather than default
;; values.
(t (get sym2 'custom-requests)))))))
(t (nth 3 a2)))))))
(while args
(let ((entry (car args)))
(if (listp entry)