(custom-variable-type): Use copy-sequence, not copy-list.
authorRichard M. Stallman <rms@gnu.org>
Tue, 22 Apr 1997 16:55:19 +0000 (16:55 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 22 Apr 1997 16:55:19 +0000 (16:55 +0000)
lisp/cus-edit.el

index 655b3c8..43a8ca5 100644 (file)
@@ -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))