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
commit78b769975afba8ed4edefc438b6de3459c3c5f27 (patch)
tree47d280095232837c90559a5c6aa2bfdf48a25a77 /lisp/custom.el
parent88c7598cf4068186457d96528ebabe4eded3d66b (diff)
downloademacs-78b769975afba8ed4edefc438b6de3459c3c5f27.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))))))