Function: dframe-attached-frame

dframe-attached-frame is a byte-compiled function defined in dframe.el.gz.

Signature

(dframe-attached-frame &optional FRAME)

Documentation

Return the attached frame belonging to the dframe controlled frame FRAME.

If optional arg FRAME is nil just return dframe-attached-frame(var)/dframe-attached-frame(fun).

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-attached-frame (&optional frame)
  "Return the attached frame belonging to the dframe controlled frame FRAME.
If optional arg FRAME is nil just return `dframe-attached-frame'."
  (save-excursion
    (if frame (select-frame frame))
    dframe-attached-frame))