diff options
| -rw-r--r-- | etc/NEWS | 8 | ||||
| -rw-r--r-- | lispref/ChangeLog | 1 | ||||
| -rw-r--r-- | src/ChangeLog | 8 |
3 files changed, 16 insertions, 1 deletions
| @@ -3271,7 +3271,13 @@ and modify elements on this property list. | |||
| 3271 | The new low-level functions process-plist and set-process-plist are | 3271 | The new low-level functions process-plist and set-process-plist are |
| 3272 | used to access and replace the entire property list of a process. | 3272 | used to access and replace the entire property list of a process. |
| 3273 | 3273 | ||
| 3274 | ??? | 3274 | *** Function accept-process-output now has an optional fourth arg |
| 3275 | `just-this-one'. If non-nil, only output from the specified process | ||
| 3276 | is handled, suspending output from other processes. If value is an | ||
| 3277 | integer, also inhibit running timers. This feature is generally not | ||
| 3278 | recommended, but may be necessary for specific applications, such as | ||
| 3279 | speech synthesis. | ||
| 3280 | |||
| 3275 | *** Adaptive read buffering of subprocess output. | 3281 | *** Adaptive read buffering of subprocess output. |
| 3276 | 3282 | ||
| 3277 | On some systems, when emacs reads the output from a subprocess, the | 3283 | On some systems, when emacs reads the output from a subprocess, the |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 3a701aaeb63..4a2314b58dd 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | * processes.texi (Accepting Output): Add `just-this-one' arg to | 3 | * processes.texi (Accepting Output): Add `just-this-one' arg to |
| 4 | `accept-process-output'. | 4 | `accept-process-output'. |
| 5 | (Output from Processes): New var `process-adaptive-read-buffering'. | ||
| 5 | 6 | ||
| 6 | 2004-08-10 Luc Teirlinck <teirllm@auburn.edu> | 7 | 2004-08-10 Luc Teirlinck <teirllm@auburn.edu> |
| 7 | 8 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index fa80a4f860a..9d9c4ee498c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2004-08-18 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * process.c (Faccept_process_output): Add arg JUST-THIS-ONE; | ||
| 4 | forward to wait_reading_process_input via DO_DISPLAY arg. | ||
| 5 | (wait_reading_process_input): If DO_DISPLAY < 0 for a process | ||
| 6 | object, only process output from that process; also inhibit | ||
| 7 | running timers if DO_DISPLAY==-2. | ||
| 8 | |||
| 1 | 2004-08-17 Kim F. Storm <storm@cua.dk> | 9 | 2004-08-17 Kim F. Storm <storm@cua.dk> |
| 2 | 10 | ||
| 3 | * process.c (process_send_signal): Fix last change--use | 11 | * process.c (process_send_signal): Fix last change--use |