From be48584dab8a352429f56f1972c741175aa89f6f Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Fri, 3 Aug 2001 15:12:39 +0000 Subject: [PATCH] (custom-set-variables): Don't test `custom-requests' properties, check the third element of the options passed to custom-set-variables instead. --- lisp/ChangeLog | 6 +++++- lisp/custom.el | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) 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) -- 2.39.2