# HG changeset patch # User Richard M. Stallman # Date 861728119 0 # Node ID a5cf59eee84bc213f8c1593dca74f7c61ae00202 # Parent 997e9c9b618b8862ae3275bb852e92ea80b9a088 (custom-variable-type): Use copy-sequence, not copy-list. diff -r 997e9c9b618b -r a5cf59eee84b lisp/cus-edit.el --- a/lisp/cus-edit.el Tue Apr 22 04:45:17 1997 +0000 +++ b/lisp/cus-edit.el Tue Apr 22 16:55:19 1997 +0000 @@ -1186,7 +1186,7 @@ 'sexp)) (options (get symbol 'custom-options)) (tmp (if (listp type) - (copy-list type) + (copy-sequence type) (list type)))) (when options (widget-put tmp :options options))