From: Richard M. Stallman Date: Tue, 22 Apr 1997 16:55:19 +0000 (+0000) Subject: (custom-variable-type): Use copy-sequence, not copy-list. X-Git-Tag: emacs-20.1~2411 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=46fa5a8374ea61d84a1f044522de9e17dd367e04;p=emacs.git (custom-variable-type): Use copy-sequence, not copy-list. --- diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 655b3c83bf6..43a8ca53ade 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -1186,7 +1186,7 @@ Otherwise, look up symbol in `custom-guess-type-alist'." '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))