Function: dframe-live-p

dframe-live-p is a byte-compiled function defined in dframe.el.gz.

Signature

(dframe-live-p FRAME)

Documentation

Return non-nil if FRAME is currently available.

Source Code

;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-live-p (frame)
  "Return non-nil if FRAME is currently available."
  (and frame (frame-live-p frame) (frame-visible-p frame)))