# HG changeset patch # User Richard M. Stallman # Date 862159097 0 # Node ID 1cc3913deaf81329a4e3b1f8011f6799acb21b0c # Parent 3f073536c09a8acd135706d54b258f2175c9c057 (custom-declare-variable): Don't use `push'. diff -r 3f073536c09a -r 1cc3913deaf8 lisp/custom.el --- 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)