Function: terminal-parameters

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

Signature

(terminal-parameters &optional TERMINAL)

Documentation

Return the parameter-alist of terminal TERMINAL.

The value is a list of elements of the form (PARM . VALUE), where PARM is a symbol.

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
{
  return Fcopy_alist (decode_live_terminal (terminal)->param_alist);
}