Function: frame-id-live-p

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

Signature

(frame-id-live-p ID)

Documentation

Return non-nil if ID is associated with a live frame object.

This is useful when you have a frame ID and a potentially dead frame reference that may have been resurrected. Also see frame-live-p.

Source Code

;; Defined in /usr/src/emacs/lisp/frame.el.gz
(defun frame-id-live-p (id)
  "Return non-nil if ID is associated with a live frame object.
This is useful when you have a frame ID and a potentially dead frame
reference that may have been resurrected.  Also see `frame-live-p'."
  (frame-live-p (frame-by-id id)))