Function: terminal-parameter

terminal-parameter is a function defined in terminal.c.

Signature

(terminal-parameter TERMINAL PARAMETER)

Documentation

Return TERMINAL's value for parameter PARAMETER.

TERMINAL can be a terminal object, a frame, or nil (meaning the selected frame's terminal).

View in manual

Probably introduced at or before Emacs version 23.1.

Source Code

// Defined in /usr/src/emacs/src/terminal.c
{
  CHECK_SYMBOL (parameter);
  return Fcdr (Fassq (parameter, decode_live_terminal (terminal)->param_alist));
}