Function: window-display-table

window-display-table is a function defined in window.c.

Signature

(window-display-table &optional WINDOW)

Documentation

Return the display-table that WINDOW is using.

WINDOW must be a live window and defaults to the selected one.

Source Code

// Defined in /usr/src/emacs/src/window.c
{
  return decode_live_window (window)->display_table;
}