From: Richard M. Stallman Date: Sun, 27 Apr 1997 16:38:17 +0000 (+0000) Subject: (custom-declare-variable): Don't use `push'. X-Git-Tag: emacs-20.1~2369 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=67efacf892aa958df1022c71da2d8aa005dcb770;p=emacs.git (custom-declare-variable): Don't use `push'. --- 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)