deuce.emacs.terminal
delete-terminal
(delete-terminal & [terminal force])
Delete TERMINAL by deleting all frames on it and closing the terminal.
TERMINAL may be a terminal object, a frame, or nil (meaning the
selected frame's terminal).
Normally, you may not delete a display if all other displays are suspended,
but if the second argument FORCE is non-nil, you may do so.
frame-terminal
(frame-terminal & [frame])
Return the terminal that FRAME is displayed on.
If FRAME is nil, the selected frame is used.
The terminal device is represented by its integer identifier.
set-terminal-parameter
(set-terminal-parameter terminal parameter value)
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).
terminal-list
(terminal-list)
Return a list of all terminal devices.
terminal-live-p
(terminal-live-p object)
Return non-nil if OBJECT is a terminal which has not been deleted.
Value is nil if OBJECT is not a live display terminal.
If object is a live display terminal, the return value indicates what
sort of output terminal it uses. See the documentation of `framep' for
possible return values.
terminal-name
(terminal-name & [terminal])
Return the name of the terminal device TERMINAL.
It is not guaranteed that the returned value is unique among opened devices.
TERMINAL may be a terminal object, a frame, or nil (meaning the
selected frame's terminal).
terminal-parameter
(terminal-parameter terminal parameter)
Return TERMINAL's value for parameter PARAMETER.
TERMINAL can be a terminal object, a frame, or nil (meaning the
selected frame's terminal).
terminal-parameters
(terminal-parameters & [terminal])
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).