From 46fa5a8374ea61d84a1f044522de9e17dd367e04 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 22 Apr 1997 16:55:19 +0000 Subject: [PATCH] (custom-variable-type): Use copy-sequence, not copy-list. --- lisp/cus-edit.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.39.5