summaryrefslogtreecommitdiff
path: root/lisp/custom.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-04-27 16:38:17 +0000
committerRichard M. Stallman <rms@gnu.org>1997-04-27 16:38:17 +0000
commit20956dd0d9ba35f1e4729d4535b4d86322b855e5 (patch)
tree1432fc45e23cc3f6d7e1cfb40e191c4c17dc73bd /lisp/custom.el
parentee996a877256b006ed23decefe4e8b07d24e9683 (diff)
downloademacs-20956dd0d9ba35f1e4729d4535b4d86322b855e5.tar.gz
(custom-declare-variable): Don't use `push'.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r--lisp/custom.el2
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)