changeset 17576:1cc3913deaf8

(custom-declare-variable): Don't use `push'.
author Richard M. Stallman <rms@gnu.org>
date Sun, 27 Apr 1997 16:38:17 +0000
parents 3f073536c09a
children 6cb2ad625486
files lisp/custom.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/custom.el	Sun Apr 27 16:34:19 1997 +0000
+++ b/lisp/custom.el	Sun Apr 27 16:38:17 1997 +0000
@@ -131,7 +131,7 @@
 		((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)