From: Richard M. Stallman Date: Tue, 22 Apr 1997 01:17:06 +0000 (+0000) Subject: (custom-declare-variable): Use copy-sequence, not copy-list. X-Git-Tag: emacs-20.1~2416 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=85340a068c2685d6bcfc568adc607cf0a37c9f9a;p=emacs.git (custom-declare-variable): Use copy-sequence, not copy-list. --- 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))))))