# HG changeset patch # User Richard M. Stallman # Date 861671826 0 # Node ID d74be66ca177a7811a6422f9af6e54306dd2e393 # Parent 1518eb71378d46eac4c404b3edccc3ca0dfa40d7 (custom-declare-variable): Use copy-sequence, not copy-list. diff -r 1518eb71378d -r d74be66ca177 lisp/custom.el --- 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))))))