]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-set-variables): Don't test `custom-requests'
authorGerd Moellmann <gerd@gnu.org>
Fri, 3 Aug 2001 15:12:39 +0000 (15:12 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 3 Aug 2001 15:12:39 +0000 (15:12 +0000)
properties, check the third element of the options passed to
custom-set-variables instead.

lisp/ChangeLog
lisp/custom.el

index 9a2bacef248eb75688a2ecae7330e11dffa3e238..c546d160e018ed37c92baff24bb6c5ab6209d8cd 100644 (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.
index 8231fd9ab0f36a16e00c09c44f59a16c96b2c8ab..e708f166779980f7e601ee0d5f169830529a51e4 100644 (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)