Function: dframe-select-attached-frame
dframe-select-attached-frame is a byte-compiled function defined in
dframe.el.gz.
Signature
(dframe-select-attached-frame &optional FRAME)
Documentation
Switch to the frame the dframe controlled frame FRAME was started from.
If optional arg FRAME is nil assume the attached frame is already selected
and just run the hooks dframe-after-select-attached-frame-hook. Return
the attached frame.
Source Code
;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-select-attached-frame (&optional frame)
"Switch to the frame the dframe controlled frame FRAME was started from.
If optional arg FRAME is nil assume the attached frame is already selected
and just run the hooks `dframe-after-select-attached-frame-hook'. Return
the attached frame."
(let ((frame (dframe-attached-frame frame)))
(if frame (select-frame frame))
(prog1 frame
(run-hooks 'dframe-after-select-attached-frame-hook))))