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
commit67efacf892aa958df1022c71da2d8aa005dcb770 (patch)
treed58017ea768e7c88a48b323117cedd56ea9c5761 /lisp/custom.el
parentdf89d8a469bbcd3fcca64cc53554cb7359f16477 (diff)
downloademacs-67efacf892aa958df1022c71da2d8aa005dcb770.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)