Function: widget-types-copy
widget-types-copy is a byte-compiled function defined in
wid-edit.el.gz.
Signature
(widget-types-copy WIDGET)
Documentation
Copy :args as widget types in WIDGET.
Source Code
;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-types-copy (widget)
"Copy :args as widget types in WIDGET."
(widget-put widget :args (mapcar 'widget-copy (widget-get widget :args)))
widget)