diff options
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 58cc6e3468c..e7414b76e55 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -131,7 +131,7 @@ not using the factory setting. Otherwise, use the `set-default'." ((eq keyword :get) (put symbol 'custom-get value)) ((eq keyword :require) - (push value requests)) + (setq requests (cons value requests))) ((eq keyword :type) (put symbol 'custom-type value)) ((eq keyword :options) |