Function: frameset-filter-iconified

frameset-filter-iconified is a byte-compiled function defined in frameset.el.gz.

Signature

(frameset-filter-iconified CURRENT FILTERED PARAMETERS SAVING)

Documentation

Remove CURRENT when saving an iconified frame.

This is used for positional parameters left and top, which are meaningless in an iconified frame, so the frame is restored in a default position.

For the meaning of CURRENT, FILTERED, PARAMETERS and SAVING, see frameset-filter-alist.

Source Code

;; Defined in /usr/src/emacs/lisp/frameset.el.gz
(defun frameset-filter-iconified (_current _filtered parameters saving)
  "Remove CURRENT when saving an iconified frame.
This is used for positional parameters `left' and `top', which are
meaningless in an iconified frame, so the frame is restored in a
default position.

For the meaning of CURRENT, FILTERED, PARAMETERS and SAVING,
see `frameset-filter-alist'."
  (not (and saving (eq (cdr (assq 'visibility parameters)) 'icon))))