diff options
| author | Richard M. Stallman | 1994-06-14 19:46:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-06-14 19:46:00 +0000 |
| commit | d33a00f21207fc1b42e4ce7fc46b76eaf7a7e6c2 (patch) | |
| tree | 3fb1cbc05d04327ccab26fb825ba59fc404f042b /src/process.c | |
| parent | 525336b7f9ab6c3a2f80d19b7e90fc9fe9f732df (diff) | |
| download | emacs-d33a00f21207fc1b42e4ce7fc46b76eaf7a7e6c2.tar.gz emacs-d33a00f21207fc1b42e4ce7fc46b76eaf7a7e6c2.zip | |
(Fprocess_send_eof): Doc fix.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 5 |
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\ |
| 2784 | Eof comes after any text already sent to it.\n\ | 2784 | Eof comes after any text already sent to it.\n\ |
| 2785 | PROCESS may be a process, a buffer, the name of a process or buffer, or\n\ | 2785 | PROCESS may be a process, a buffer, the name of a process or buffer, or\n\ |
| 2786 | nil, indicating the current buffer's process.") | 2786 | nil, indicating the current buffer's process.\n\ |
| 2787 | If PROCESS is a network connection, or is a process communicating\n\ | ||
| 2788 | through a pipe (as opposed to a pty), then you cannot send any more\n\ | ||
| 2789 | text to PROCESS after you call this function.") | ||
| 2787 | (process) | 2790 | (process) |
| 2788 | Lisp_Object process; | 2791 | Lisp_Object process; |
| 2789 | { | 2792 | { |