diff options
| author | Richard M. Stallman | 1997-04-27 16:38:17 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-04-27 16:38:17 +0000 |
| commit | 67efacf892aa958df1022c71da2d8aa005dcb770 (patch) | |
| tree | d58017ea768e7c88a48b323117cedd56ea9c5761 | |
| parent | df89d8a469bbcd3fcca64cc53554cb7359f16477 (diff) | |
| download | emacs-67efacf892aa958df1022c71da2d8aa005dcb770.tar.gz emacs-67efacf892aa958df1022c71da2d8aa005dcb770.zip | |
(custom-declare-variable): Don't use `push'.
| -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'." | |||
| 131 | ((eq keyword :get) | 131 | ((eq keyword :get) |
| 132 | (put symbol 'custom-get value)) | 132 | (put symbol 'custom-get value)) |
| 133 | ((eq keyword :require) | 133 | ((eq keyword :require) |
| 134 | (push value requests)) | 134 | (setq requests (cons value requests))) |
| 135 | ((eq keyword :type) | 135 | ((eq keyword :type) |
| 136 | (put symbol 'custom-type value)) | 136 | (put symbol 'custom-type value)) |
| 137 | ((eq keyword :options) | 137 | ((eq keyword :options) |