Function: frameset-copy
frameset-copy is a byte-compiled function defined in frameset.el.gz.
Signature
(frameset-copy FRAMESET)
Documentation
Return a deep copy of FRAMESET.
FRAMESET is copied with copy-tree.
Source Code
;; Defined in /usr/src/emacs/lisp/frameset.el.gz
;; We autoloaded this for use in register.el, but now that we use registerv
;; objects, this autoload is not useful any more.
;; ;;;###autoload (autoload 'frameset-p "frameset"
;; ;;;###autoload "Return non-nil if OBJECT is a frameset, nil otherwise." nil)
(defun frameset-copy (frameset)
"Return a deep copy of FRAMESET.
FRAMESET is copied with `copy-tree'."
(copy-tree frameset t))