diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-04-27 16:38:17 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-04-27 16:38:17 +0000 |
commit | 67efacf892aa958df1022c71da2d8aa005dcb770 (patch) | |
tree | d58017ea768e7c88a48b323117cedd56ea9c5761 /lisp/custom.el | |
parent | df89d8a469bbcd3fcca64cc53554cb7359f16477 (diff) | |
download | emacs-67efacf892aa958df1022c71da2d8aa005dcb770.tar.gz |
(custom-declare-variable): Don't use `push'.
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) |