Function: set-terminal-parameter
set-terminal-parameter is a function defined in terminal.c.
Signature
(set-terminal-parameter TERMINAL PARAMETER VALUE)
Documentation
Set TERMINAL's value for parameter PARAMETER to VALUE.
Return the previous value of PARAMETER.
TERMINAL can be a terminal object, a frame or nil (meaning the selected frame's terminal).
Probably introduced at or before Emacs version 23.1.
Source Code
// Defined in /usr/src/emacs/src/terminal.c
{
return store_terminal_param (decode_live_terminal (terminal), parameter, value);
}