diff options
| author | Chong Yidong | 2009-04-04 15:26:03 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-04-04 15:26:03 +0000 |
| commit | e173bbce451a12940bd8399f7f8a9b9b310f7007 (patch) | |
| tree | db52397e744fb9a7f679617a9e4f2028e39ed785 /src/terminal.c | |
| parent | e02ec85ea0888323c016f407f4efeb6df24c1fe7 (diff) | |
| download | emacs-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.c | 18 |
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 | ||
| 298 | DEFUN ("delete-terminal", Fdelete_terminal, Sdelete_terminal, 0, 2, 0, | 298 | DEFUN ("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. |
| 300 | TERMINAL may be a terminal id, a frame, or nil (meaning the selected | 300 | TERMINAL may be a terminal object, a frame, or nil (meaning the |
| 301 | frame's terminal). | 301 | selected frame's terminal). |
| 302 | 302 | ||
| 303 | Normally, you may not delete a display if all other displays are suspended, | 303 | Normally, you may not delete a display if all other displays are suspended, |
| 304 | but if the second argument FORCE is non-nil, you may do so. */) | 304 | but 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. |
| 423 | It is not guaranteed that the returned value is unique among opened devices. | 423 | It is not guaranteed that the returned value is unique among opened devices. |
| 424 | 424 | ||
| 425 | TERMINAL may be a terminal id, a frame, or nil (meaning the | 425 | TERMINAL may be a terminal object, a frame, or nil (meaning the |
| 426 | selected frame's terminal). */) | 426 | selected 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, | |||
| 476 | The value is a list of elements of the form (PARM . VALUE), where PARM | 476 | The value is a list of elements of the form (PARM . VALUE), where PARM |
| 477 | is a symbol. | 477 | is a symbol. |
| 478 | 478 | ||
| 479 | TERMINAL can be a terminal id, a frame or nil (meaning the selected | 479 | TERMINAL can be a terminal object, a frame, or nil (meaning the |
| 480 | frame's terminal). */) | 480 | selected 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 | ||
| 489 | DEFUN ("terminal-parameter", Fterminal_parameter, Sterminal_parameter, 2, 2, 0, | 489 | DEFUN ("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. |
| 491 | TERMINAL can be a terminal id, a frame or nil (meaning the selected | 491 | TERMINAL can be a terminal object, a frame, or nil (meaning the |
| 492 | frame's terminal). */) | 492 | selected 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. |
| 508 | Return the previous value of PARAMETER. | 508 | Return the previous value of PARAMETER. |
| 509 | 509 | ||
| 510 | TERMINAL can be a terminal id, a frame or nil (meaning the selected | 510 | TERMINAL can be a terminal object, a frame or nil (meaning the |
| 511 | frame's terminal). */) | 511 | selected 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; |