From 85340a068c2685d6bcfc568adc607cf0a37c9f9a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 22 Apr 1997 01:17:06 +0000 Subject: [PATCH] (custom-declare-variable): Use copy-sequence, not copy-list. --- lisp/custom.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/custom.el b/lisp/custom.el index 3b77cc23305..afa5b20ca21 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -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)))))) -- 2.39.5