diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-08-03 15:12:39 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-08-03 15:12:39 +0000 |
commit | be48584dab8a352429f56f1972c741175aa89f6f (patch) | |
tree | aa094b0dec387e0d60324ead8f49d5343f0f1639 /lisp/custom.el | |
parent | 5e1f85e0af32a82baff430dc30af4b12b487a6f8 (diff) | |
download | emacs-be48584dab8a352429f56f1972c741175aa89f6f.tar.gz |
(custom-set-variables): Don't test `custom-requests'
properties, check the third element of the options passed to
custom-set-variables instead.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r-- | lisp/custom.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |