Mercurial > emacs
changeset 17529:d74be66ca177
(custom-declare-variable): Use copy-sequence, not copy-list.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 22 Apr 1997 01:17:06 +0000 |
parents | 1518eb71378d |
children | 9fb83ef40566 |
files | lisp/custom.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/custom.el Tue Apr 22 01:04:48 1997 +0000 +++ b/lisp/custom.el Tue Apr 22 01:17:06 1997 +0000 @@ -81,7 +81,7 @@ (custom-add-option symbol option)) value) ;; Fast code for the common case. - (put symbol 'custom-options (copy-list value)))) + (put symbol 'custom-options (copy-sequence value)))) (t (custom-handle-keyword symbol keyword value 'custom-variable))))))