Function: dframe-handle-make-frame-visible

dframe-handle-make-frame-visible is an interactive and byte-compiled function defined in dframe.el.gz.

Signature

(dframe-handle-make-frame-visible E)

Documentation

Handle a make-frame-visible event.

Should enable auto-updating if the last state was also enabled. Argument E is the event making the frame visible.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-handle-make-frame-visible (e)
  "Handle a `make-frame-visible' event.
Should enable auto-updating if the last state was also enabled.
Argument E is the event making the frame visible."
  (interactive "e")
  (let ((f last-event-frame))
    (if (and (dframe-attached-frame f)
	     dframe-make-frame-visible-function)
	(funcall dframe-make-frame-visible-function e)
      )))