diff options
| author | Miles Bader | 2007-08-13 13:51:08 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-08-13 13:51:08 +0000 |
| commit | aaf34461ff5804e5cebe163b31e535da72e81d87 (patch) | |
| tree | b096310b459b78e437f08ac0f1f00954840a5db5 /src/process.c | |
| parent | 61d032dfd91b811d59acd7605ac02758be97e912 (diff) | |
| parent | 37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53 (diff) | |
| download | emacs-aaf34461ff5804e5cebe163b31e535da72e81d87.tar.gz emacs-aaf34461ff5804e5cebe163b31e535da72e81d87.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 846-851)
- Update from CVS
- Merge from emacs--rel--22
* emacs--rel--22 (patch 88-92)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 242-244)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-31
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/process.c b/src/process.c index 43609266112..dfb97b8d615 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2780,7 +2780,7 @@ The stopped state is cleared by `continue-process' and set by | |||
| 2780 | 2780 | ||
| 2781 | :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the | 2781 | :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the |
| 2782 | process filter are multibyte, otherwise they are unibyte. | 2782 | process filter are multibyte, otherwise they are unibyte. |
| 2783 | If this keyword is not specified, the strings are multibyte iff | 2783 | If this keyword is not specified, the strings are multibyte if |
| 2784 | `default-enable-multibyte-characters' is non-nil. | 2784 | `default-enable-multibyte-characters' is non-nil. |
| 2785 | 2785 | ||
| 2786 | :sentinel SENTINEL -- Install SENTINEL as the process sentinel. | 2786 | :sentinel SENTINEL -- Install SENTINEL as the process sentinel. |
| @@ -3922,7 +3922,7 @@ it specifies a fractional number of seconds to wait. | |||
| 3922 | If optional fourth arg JUST-THIS-ONE is non-nil, only accept output | 3922 | If optional fourth arg JUST-THIS-ONE is non-nil, only accept output |
| 3923 | from PROCESS, suspending reading output from other processes. | 3923 | from PROCESS, suspending reading output from other processes. |
| 3924 | If JUST-THIS-ONE is an integer, don't run any timers either. | 3924 | If JUST-THIS-ONE is an integer, don't run any timers either. |
| 3925 | Return non-nil iff we received any output before the timeout expired. */) | 3925 | Return non-nil if we received any output before the timeout expired. */) |
| 3926 | (process, seconds, millisec, just_this_one) | 3926 | (process, seconds, millisec, just_this_one) |
| 3927 | register Lisp_Object process, seconds, millisec, just_this_one; | 3927 | register Lisp_Object process, seconds, millisec, just_this_one; |
| 3928 | { | 3928 | { |
| @@ -4254,16 +4254,16 @@ select_wrapper (n, rfd, wfd, xfd, tmo) | |||
| 4254 | (and gobble terminal input into the buffer if any arrives). | 4254 | (and gobble terminal input into the buffer if any arrives). |
| 4255 | 4255 | ||
| 4256 | If WAIT_PROC is specified, wait until something arrives from that | 4256 | If WAIT_PROC is specified, wait until something arrives from that |
| 4257 | process. The return value is true iff we read some input from | 4257 | process. The return value is true if we read some input from |
| 4258 | that process. | 4258 | that process. |
| 4259 | 4259 | ||
| 4260 | If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC | 4260 | If JUST_WAIT_PROC is non-nil, handle only output from WAIT_PROC |
| 4261 | (suspending output from other processes). A negative value | 4261 | (suspending output from other processes). A negative value |
| 4262 | means don't run any timers either. | 4262 | means don't run any timers either. |
| 4263 | 4263 | ||
| 4264 | If WAIT_PROC is specified, then the function returns true iff we | 4264 | If WAIT_PROC is specified, then the function returns true if we |
| 4265 | received input from that process before the timeout elapsed. | 4265 | received input from that process before the timeout elapsed. |
| 4266 | Otherwise, return true iff we received input from any process. */ | 4266 | Otherwise, return true if we received input from any process. */ |
| 4267 | 4267 | ||
| 4268 | int | 4268 | int |
| 4269 | wait_reading_process_output (time_limit, microsecs, read_kbd, do_display, | 4269 | wait_reading_process_output (time_limit, microsecs, read_kbd, do_display, |
| @@ -7358,7 +7358,7 @@ Lisp_Object QCtype; | |||
| 7358 | do_display != 0 means redisplay should be done to show subprocess | 7358 | do_display != 0 means redisplay should be done to show subprocess |
| 7359 | output that arrives. | 7359 | output that arrives. |
| 7360 | 7360 | ||
| 7361 | Return true iff we received input from any process. */ | 7361 | Return true if we received input from any process. */ |
| 7362 | 7362 | ||
| 7363 | int | 7363 | int |
| 7364 | wait_reading_process_output (time_limit, microsecs, read_kbd, do_display, | 7364 | wait_reading_process_output (time_limit, microsecs, read_kbd, do_display, |