Function: set-window-display-table
set-window-display-table is a function defined in window.c.
Signature
(set-window-display-table WINDOW TABLE)
Documentation
Set WINDOW's display-table to TABLE.
WINDOW must be a live window and defaults to the selected one.
Source Code
// Defined in /usr/src/emacs/src/window.c
{
wset_display_table (decode_live_window (window), table);
return table;
}