From 67efacf892aa958df1022c71da2d8aa005dcb770 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 27 Apr 1997 16:38:17 +0000 Subject: [PATCH] (custom-declare-variable): Don't use `push'. --- lisp/custom.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5