aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorRichard M. Stallman1994-06-14 19:46:00 +0000
committerRichard M. Stallman1994-06-14 19:46:00 +0000
commitd33a00f21207fc1b42e4ce7fc46b76eaf7a7e6c2 (patch)
tree3fb1cbc05d04327ccab26fb825ba59fc404f042b /src/process.c
parent525336b7f9ab6c3a2f80d19b7e90fc9fe9f732df (diff)
downloademacs-d33a00f21207fc1b42e4ce7fc46b76eaf7a7e6c2.tar.gz
emacs-d33a00f21207fc1b42e4ce7fc46b76eaf7a7e6c2.zip
(Fprocess_send_eof): Doc fix.
Diffstat (limited to 'src/process.c')
-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{