From: Gerd Moellmann Date: Fri, 3 Aug 2001 15:12:39 +0000 (+0000) Subject: (custom-set-variables): Don't test `custom-requests' X-Git-Tag: emacs-pretest-21.0.105~293 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=be48584dab8a352429f56f1972c741175aa89f6f;p=emacs.git (custom-set-variables): Don't test `custom-requests' properties, check the third element of the options passed to custom-set-variables instead. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9a2bacef248..c546d160e01 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,7 +1,11 @@ 2001-08-03 Gerd Moellmann + * 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. diff --git a/lisp/custom.el b/lisp/custom.el index 8231fd9ab0f..e708f166779 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -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)