summaryrefslogtreecommitdiff
path: root/lisp/custom.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-04-22 01:17:06 +0000
committerRichard M. Stallman <rms@gnu.org>1997-04-22 01:17:06 +0000
commit85340a068c2685d6bcfc568adc607cf0a37c9f9a (patch)
tree9dfd5b41cfbc6847f11d8fa2f9f57e4dbc8372d4 /lisp/custom.el
parent70b760ed2da29f1b5a8f90047ce70066da868cd5 (diff)
downloademacs-85340a068c2685d6bcfc568adc607cf0a37c9f9a.tar.gz
(custom-declare-variable): Use copy-sequence, not copy-list.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r--lisp/custom.el2
1 files changed, 1 insertions, 1 deletions
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))))))