diff options
| author | Karl Heuer | 1998-10-08 20:31:34 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-10-08 20:31:34 +0000 |
| commit | 7744ca33c617f1c10370c408ff6d17cd73dec230 (patch) | |
| tree | 36ab287fa9664ef94b487155cc591cb6e3370827 /src/process.c | |
| parent | c3907a7e36229f6f87c42bbea2cea5ec6146e5e3 (diff) | |
| download | emacs-7744ca33c617f1c10370c408ff6d17cd73dec230.tar.gz emacs-7744ca33c617f1c10370c408ff6d17cd73dec230.zip | |
Doc fixes.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/src/process.c b/src/process.c index 0e5ae9e3fe2..930ff859e53 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -547,7 +547,7 @@ DEFUN ("get-process", Fget_process, Sget_process, 1, 1, 0, | |||
| 547 | } | 547 | } |
| 548 | 548 | ||
| 549 | DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, | 549 | DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, |
| 550 | "Return the (or, a) process associated with BUFFER.\n\ | 550 | "Return the (or a) process associated with BUFFER.\n\ |
| 551 | BUFFER may be a buffer or the name of one.") | 551 | BUFFER may be a buffer or the name of one.") |
| 552 | (buffer) | 552 | (buffer) |
| 553 | register Lisp_Object buffer; | 553 | register Lisp_Object buffer; |
| @@ -635,7 +635,8 @@ nil, indicating the current buffer's process.") | |||
| 635 | } | 635 | } |
| 636 | 636 | ||
| 637 | DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0, | 637 | DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0, |
| 638 | "Return the status of PROCESS: a symbol, one of these:\n\ | 638 | "Return the status of PROCESS.\n\ |
| 639 | The returned value is one of the following symbols:\n\ | ||
| 639 | run -- for a process that is running.\n\ | 640 | run -- for a process that is running.\n\ |
| 640 | stop -- for a process stopped but continuable.\n\ | 641 | stop -- for a process stopped but continuable.\n\ |
| 641 | exit -- for a process that has exited.\n\ | 642 | exit -- for a process that has exited.\n\ |
| @@ -751,8 +752,7 @@ DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer, | |||
| 751 | DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer, | 752 | DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer, |
| 752 | 1, 1, 0, | 753 | 1, 1, 0, |
| 753 | "Return the buffer PROCESS is associated with.\n\ | 754 | "Return the buffer PROCESS is associated with.\n\ |
| 754 | Output from PROCESS is inserted in this buffer\n\ | 755 | Output from PROCESS is inserted in this buffer unless PROCESS has a filter.") |
| 755 | unless PROCESS has a filter.") | ||
| 756 | (process) | 756 | (process) |
| 757 | register Lisp_Object process; | 757 | register Lisp_Object process; |
| 758 | { | 758 | { |
| @@ -917,9 +917,9 @@ For a net connection, the value is a cons cell of the form (HOST SERVICE).") | |||
| 917 | #if 0 /* Turned off because we don't currently record this info | 917 | #if 0 /* Turned off because we don't currently record this info |
| 918 | in the process. Perhaps add it. */ | 918 | in the process. Perhaps add it. */ |
| 919 | DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0, | 919 | DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0, |
| 920 | "Return the connection type of `PROCESS'.\n\ | 920 | "Return the connection type of PROCESS.\n\ |
| 921 | The value is `nil' for a pipe,\n\ | 921 | The value is nil for a pipe, t or `pty' for a pty, or `stream' for\n\ |
| 922 | `t' or `pty' for a pty, or `stream' for a socket connection.") | 922 | a socket connection.") |
| 923 | (process) | 923 | (process) |
| 924 | Lisp_Object process; | 924 | Lisp_Object process; |
| 925 | { | 925 | { |
| @@ -1047,8 +1047,8 @@ Proc Status Buffer Tty Command\n\ | |||
| 1047 | 1047 | ||
| 1048 | DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 0, "", | 1048 | DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 0, "", |
| 1049 | "Display a list of all processes.\n\ | 1049 | "Display a list of all processes.\n\ |
| 1050 | \(Any processes listed as Exited or Signaled are actually eliminated\n\ | 1050 | Any process listed as exited or signaled is actually eliminated\n\ |
| 1051 | after the listing is made.)") | 1051 | after the listing is made.") |
| 1052 | () | 1052 | () |
| 1053 | { | 1053 | { |
| 1054 | internal_with_output_to_temp_buffer ("*Process List*", | 1054 | internal_with_output_to_temp_buffer ("*Process List*", |
| @@ -3639,7 +3639,7 @@ process_send_signal (process, signo, current_group, nomsg) | |||
| 3639 | } | 3639 | } |
| 3640 | 3640 | ||
| 3641 | DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0, | 3641 | DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0, |
| 3642 | "Interrupt process PROCESS. May be process or name of one.\n\ | 3642 | "Interrupt process PROCESS.\n\ |
| 3643 | PROCESS may be a process, a buffer, or the name of a process or buffer.\n\ | 3643 | PROCESS may be a process, a buffer, or the name of a process or buffer.\n\ |
| 3644 | nil or no arg means current buffer's process.\n\ | 3644 | nil or no arg means current buffer's process.\n\ |
| 3645 | Second arg CURRENT-GROUP non-nil means send signal to\n\ | 3645 | Second arg CURRENT-GROUP non-nil means send signal to\n\ |
| @@ -3828,7 +3828,7 @@ SIGCODE may be an integer, or a symbol whose name is a signal name.") | |||
| 3828 | 3828 | ||
| 3829 | DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0, | 3829 | DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0, |
| 3830 | "Make PROCESS see end-of-file in its input.\n\ | 3830 | "Make PROCESS see end-of-file in its input.\n\ |
| 3831 | Eof comes after any text already sent to it.\n\ | 3831 | EOF comes after any text already sent to it.\n\ |
| 3832 | PROCESS may be a process, a buffer, the name of a process or buffer, or\n\ | 3832 | PROCESS may be a process, a buffer, the name of a process or buffer, or\n\ |
| 3833 | nil, indicating the current buffer's process.\n\ | 3833 | nil, indicating the current buffer's process.\n\ |
| 3834 | If PROCESS is a network connection, or is a process communicating\n\ | 3834 | If PROCESS is a network connection, or is a process communicating\n\ |
| @@ -4301,8 +4301,9 @@ status_notify () | |||
| 4301 | 4301 | ||
| 4302 | DEFUN ("set-process-coding-system", Fset_process_coding_system, | 4302 | DEFUN ("set-process-coding-system", Fset_process_coding_system, |
| 4303 | Sset_process_coding_system, 1, 3, 0, | 4303 | Sset_process_coding_system, 1, 3, 0, |
| 4304 | "Set coding systems of PROCESS to DECODING (input from the process) and\n\ | 4304 | "Set coding systems of PROCESS to DECODING and ENCODING.\n\ |
| 4305 | ENCODING (output to the process).") | 4305 | DECODING will be used to decode subprocess output and ENCODING to\n\ |
| 4306 | encode subprocess input.") | ||
| 4306 | (proc, decoding, encoding) | 4307 | (proc, decoding, encoding) |
| 4307 | register Lisp_Object proc, decoding, encoding; | 4308 | register Lisp_Object proc, decoding, encoding; |
| 4308 | { | 4309 | { |