aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorMartin Rudalics2008-10-02 08:04:54 +0000
committerMartin Rudalics2008-10-02 08:04:54 +0000
commit2a7bb8823c0e36e9d093134bf49e2d9914641046 (patch)
treeef803625d9a7288cca5db483c1f288e07fc87fb1 /src/process.c
parent65f451d083e946cdee6278ebe8ffbc4705d9328b (diff)
downloademacs-2a7bb8823c0e36e9d093134bf49e2d9914641046.tar.gz
emacs-2a7bb8823c0e36e9d093134bf49e2d9914641046.zip
(Faccept_process_output): Fix doc-string.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/process.c b/src/process.c
index fd19fc9288d..647025e055f 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1221,7 +1221,7 @@ a socket connection. */)
1221 return XPROCESS (process)->type; 1221 return XPROCESS (process)->type;
1222} 1222}
1223#endif 1223#endif
1224 1224
1225DEFUN ("process-type", Fprocess_type, Sprocess_type, 1, 1, 0, 1225DEFUN ("process-type", Fprocess_type, Sprocess_type, 1, 1, 0,
1226 doc: /* Return the connection type of PROCESS. 1226 doc: /* Return the connection type of PROCESS.
1227The value is either the symbol `real', `network', or `serial'. 1227The value is either the symbol `real', `network', or `serial'.
@@ -4137,9 +4137,9 @@ It is read into the process' buffers or given to their filter functions.
4137Non-nil arg PROCESS means do not return until some output has been received 4137Non-nil arg PROCESS means do not return until some output has been received
4138from PROCESS. 4138from PROCESS.
4139 4139
4140Non-nil second arg SECONDS and third arg MILLISEC are number of 4140Non-nil second arg SECONDS and third arg MILLISEC are number of seconds
4141seconds and milliseconds to wait; return after that much time whether 4141and milliseconds to wait; return after that much time whether or not
4142or not there is input. If SECONDS is a floating point number, 4142there is any subprocess output. If SECONDS is a floating point number,
4143it specifies a fractional number of seconds to wait. 4143it specifies a fractional number of seconds to wait.
4144The MILLISEC argument is obsolete and should be avoided. 4144The MILLISEC argument is obsolete and should be avoided.
4145 4145
@@ -7136,7 +7136,7 @@ static void
7136get_up_time (time_t *sec, unsigned *usec) 7136get_up_time (time_t *sec, unsigned *usec)
7137{ 7137{
7138 FILE *fup; 7138 FILE *fup;
7139 7139
7140 *sec = *usec = 0; 7140 *sec = *usec = 0;
7141 7141
7142 BLOCK_INPUT; 7142 BLOCK_INPUT;