Function: window-parameters

window-parameters is a function defined in window.c.

Signature

(window-parameters &optional WINDOW)

Documentation

Return the parameters of WINDOW and their values.

WINDOW must be a valid window and defaults to the selected one. The return value is a list of elements of the form (PARAMETER . VALUE).

View in manual

Probably introduced at or before Emacs version 23.1.

Source Code

// Defined in /usr/src/emacs/src/window.c
{
  return Fcopy_alist (decode_valid_window (window)->window_parameters);
}