aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorKarl Heuer1998-10-08 20:31:34 +0000
committerKarl Heuer1998-10-08 20:31:34 +0000
commit7744ca33c617f1c10370c408ff6d17cd73dec230 (patch)
tree36ab287fa9664ef94b487155cc591cb6e3370827 /src/process.c
parentc3907a7e36229f6f87c42bbea2cea5ec6146e5e3 (diff)
downloademacs-7744ca33c617f1c10370c408ff6d17cd73dec230.tar.gz
emacs-7744ca33c617f1c10370c408ff6d17cd73dec230.zip
Doc fixes.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c27
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
549DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, 549DEFUN ("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\
551BUFFER may be a buffer or the name of one.") 551BUFFER 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
637DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0, 637DEFUN ("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\
639The returned value is one of the following symbols:\n\
639run -- for a process that is running.\n\ 640run -- for a process that is running.\n\
640stop -- for a process stopped but continuable.\n\ 641stop -- for a process stopped but continuable.\n\
641exit -- for a process that has exited.\n\ 642exit -- for a process that has exited.\n\
@@ -751,8 +752,7 @@ DEFUN ("set-process-buffer", Fset_process_buffer, Sset_process_buffer,
751DEFUN ("process-buffer", Fprocess_buffer, Sprocess_buffer, 752DEFUN ("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\
754Output from PROCESS is inserted in this buffer\n\ 755Output from PROCESS is inserted in this buffer unless PROCESS has a filter.")
755unless 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. */
919DEFUN ("process-connection", Fprocess_connection, Sprocess_connection, 1, 1, 0, 919DEFUN ("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\
921The value is `nil' for a pipe,\n\ 921The 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.") 922a 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
1048DEFUN ("list-processes", Flist_processes, Slist_processes, 0, 0, "", 1048DEFUN ("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\ 1050Any process listed as exited or signaled is actually eliminated\n\
1051after the listing is made.)") 1051after 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
3641DEFUN ("interrupt-process", Finterrupt_process, Sinterrupt_process, 0, 2, 0, 3641DEFUN ("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\
3643PROCESS may be a process, a buffer, or the name of a process or buffer.\n\ 3643PROCESS may be a process, a buffer, or the name of a process or buffer.\n\
3644nil or no arg means current buffer's process.\n\ 3644nil or no arg means current buffer's process.\n\
3645Second arg CURRENT-GROUP non-nil means send signal to\n\ 3645Second 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
3829DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0, 3829DEFUN ("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\
3831Eof comes after any text already sent to it.\n\ 3831EOF comes after any text already sent to it.\n\
3832PROCESS may be a process, a buffer, the name of a process or buffer, or\n\ 3832PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
3833nil, indicating the current buffer's process.\n\ 3833nil, indicating the current buffer's process.\n\
3834If PROCESS is a network connection, or is a process communicating\n\ 3834If PROCESS is a network connection, or is a process communicating\n\
@@ -4301,8 +4301,9 @@ status_notify ()
4301 4301
4302DEFUN ("set-process-coding-system", Fset_process_coding_system, 4302DEFUN ("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\
4305ENCODING (output to the process).") 4305DECODING will be used to decode subprocess output and ENCODING to\n\
4306encode 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{