aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/process.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index a6276c12115..ebbbb93b9ed 100644
--- a/src/process.c
+++ b/src/process.c
@@ -2783,7 +2783,10 @@ DEFUN ("process-send-eof", Fprocess_send_eof, Sprocess_send_eof, 0, 1, 0,
2783 "Make PROCESS see end-of-file in its input.\n\ 2783 "Make PROCESS see end-of-file in its input.\n\
2784Eof comes after any text already sent to it.\n\ 2784Eof comes after any text already sent to it.\n\
2785PROCESS may be a process, a buffer, the name of a process or buffer, or\n\ 2785PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
2786nil, indicating the current buffer's process.") 2786nil, indicating the current buffer's process.\n\
2787If PROCESS is a network connection, or is a process communicating\n\
2788through a pipe (as opposed to a pty), then you cannot send any more\n\
2789text to PROCESS after you call this function.")
2787 (process) 2790 (process)
2788 Lisp_Object process; 2791 Lisp_Object process;
2789{ 2792{