aboutsummaryrefslogtreecommitdiffstats
path: root/src/terminal.c
diff options
context:
space:
mode:
authorChong Yidong2009-04-04 15:26:03 +0000
committerChong Yidong2009-04-04 15:26:03 +0000
commite173bbce451a12940bd8399f7f8a9b9b310f7007 (patch)
treedb52397e744fb9a7f679617a9e4f2028e39ed785 /src/terminal.c
parente02ec85ea0888323c016f407f4efeb6df24c1fe7 (diff)
downloademacs-e173bbce451a12940bd8399f7f8a9b9b310f7007.tar.gz
emacs-e173bbce451a12940bd8399f7f8a9b9b310f7007.zip
* terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
(Fterminal_parameters, Fterminal_parameter) (Fset_terminal_parameter): In doc string, refer to terminal objects rather than terminal ids.
Diffstat (limited to 'src/terminal.c')
-rw-r--r--src/terminal.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/terminal.c b/src/terminal.c
index f03a18d08fa..f9001bbad38 100644
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -297,8 +297,8 @@ static Lisp_Object Vdelete_terminal_functions;
297 297
298DEFUN ("delete-terminal", Fdelete_terminal, Sdelete_terminal, 0, 2, 0, 298DEFUN ("delete-terminal", Fdelete_terminal, Sdelete_terminal, 0, 2, 0,
299 doc: /* Delete TERMINAL by deleting all frames on it and closing the terminal. 299 doc: /* Delete TERMINAL by deleting all frames on it and closing the terminal.
300TERMINAL may be a terminal id, a frame, or nil (meaning the selected 300TERMINAL may be a terminal object, a frame, or nil (meaning the
301frame's terminal). 301selected frame's terminal).
302 302
303Normally, you may not delete a display if all other displays are suspended, 303Normally, you may not delete a display if all other displays are suspended,
304but if the second argument FORCE is non-nil, you may do so. */) 304but if the second argument FORCE is non-nil, you may do so. */)
@@ -422,7 +422,7 @@ DEFUN ("terminal-name", Fterminal_name, Sterminal_name, 0, 1, 0,
422 doc: /* Return the name of the terminal device TERMINAL. 422 doc: /* Return the name of the terminal device TERMINAL.
423It is not guaranteed that the returned value is unique among opened devices. 423It is not guaranteed that the returned value is unique among opened devices.
424 424
425TERMINAL may be a terminal id, a frame, or nil (meaning the 425TERMINAL may be a terminal object, a frame, or nil (meaning the
426selected frame's terminal). */) 426selected frame's terminal). */)
427 (terminal) 427 (terminal)
428 Lisp_Object terminal; 428 Lisp_Object terminal;
@@ -476,8 +476,8 @@ DEFUN ("terminal-parameters", Fterminal_parameters, Sterminal_parameters, 0, 1,
476The value is a list of elements of the form (PARM . VALUE), where PARM 476The value is a list of elements of the form (PARM . VALUE), where PARM
477is a symbol. 477is a symbol.
478 478
479TERMINAL can be a terminal id, a frame or nil (meaning the selected 479TERMINAL can be a terminal object, a frame, or nil (meaning the
480frame's terminal). */) 480selected frame's terminal). */)
481 (terminal) 481 (terminal)
482 Lisp_Object terminal; 482 Lisp_Object terminal;
483{ 483{
@@ -488,8 +488,8 @@ frame's terminal). */)
488 488
489DEFUN ("terminal-parameter", Fterminal_parameter, Sterminal_parameter, 2, 2, 0, 489DEFUN ("terminal-parameter", Fterminal_parameter, Sterminal_parameter, 2, 2, 0,
490 doc: /* Return TERMINAL's value for parameter PARAMETER. 490 doc: /* Return TERMINAL's value for parameter PARAMETER.
491TERMINAL can be a terminal id, a frame or nil (meaning the selected 491TERMINAL can be a terminal object, a frame, or nil (meaning the
492frame's terminal). */) 492selected frame's terminal). */)
493 (terminal, parameter) 493 (terminal, parameter)
494 Lisp_Object terminal; 494 Lisp_Object terminal;
495 Lisp_Object parameter; 495 Lisp_Object parameter;
@@ -507,8 +507,8 @@ DEFUN ("set-terminal-parameter", Fset_terminal_parameter,
507 doc: /* Set TERMINAL's value for parameter PARAMETER to VALUE. 507 doc: /* Set TERMINAL's value for parameter PARAMETER to VALUE.
508Return the previous value of PARAMETER. 508Return the previous value of PARAMETER.
509 509
510TERMINAL can be a terminal id, a frame or nil (meaning the selected 510TERMINAL can be a terminal object, a frame or nil (meaning the
511frame's terminal). */) 511selected frame's terminal). */)
512 (terminal, parameter, value) 512 (terminal, parameter, value)
513 Lisp_Object terminal; 513 Lisp_Object terminal;
514 Lisp_Object parameter; 514 Lisp_Object parameter;