Function: dframe-handle-iconify-frame
dframe-handle-iconify-frame is an interactive and byte-compiled
function defined in dframe.el.gz.
Signature
(dframe-handle-iconify-frame E)
Documentation
Handle a iconify-frame event.
Should disable auto-updating if the last state was also enabled. Argument E is the event iconifying the frame.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-handle-iconify-frame (e)
"Handle a `iconify-frame' event.
Should disable auto-updating if the last state was also enabled.
Argument E is the event iconifying the frame."
(interactive "e")
(let ((f last-event-frame))
(if (and (dframe-attached-frame f)
dframe-iconify-frame-function e)
(funcall dframe-iconify-frame-function)
)))