diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/process.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 70fce9add14..9c5d5a1b865 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-02-22 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * process.c (Finternal_default_process_filter) | ||
| 4 | (Finternal_default_process_sentinel): Doc tweaks. | ||
| 5 | |||
| 1 | 2014-02-21 Glenn Morris <rgm@gnu.org> | 6 | 2014-02-21 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * process.c (Fprocess_buffer, Faccept_process_output) | 8 | * process.c (Fprocess_buffer, Faccept_process_output) |
diff --git a/src/process.c b/src/process.c index c891962ecb2..187627dd85a 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -5188,7 +5188,8 @@ read_and_dispose_of_process_output (struct Lisp_Process *p, char *chars, | |||
| 5188 | DEFUN ("internal-default-process-filter", Finternal_default_process_filter, | 5188 | DEFUN ("internal-default-process-filter", Finternal_default_process_filter, |
| 5189 | Sinternal_default_process_filter, 2, 2, 0, | 5189 | Sinternal_default_process_filter, 2, 2, 0, |
| 5190 | doc: /* Function used as default process filter. | 5190 | doc: /* Function used as default process filter. |
| 5191 | This inserts the process's output into its buffer. */) | 5191 | This inserts the process's output into its buffer, if there is one. |
| 5192 | Otherwise it discards the output. */) | ||
| 5192 | (Lisp_Object proc, Lisp_Object text) | 5193 | (Lisp_Object proc, Lisp_Object text) |
| 5193 | { | 5194 | { |
| 5194 | struct Lisp_Process *p; | 5195 | struct Lisp_Process *p; |
| @@ -6413,7 +6414,7 @@ status_notify (struct Lisp_Process *deleting_process) | |||
| 6413 | DEFUN ("internal-default-process-sentinel", Finternal_default_process_sentinel, | 6414 | DEFUN ("internal-default-process-sentinel", Finternal_default_process_sentinel, |
| 6414 | Sinternal_default_process_sentinel, 2, 2, 0, | 6415 | Sinternal_default_process_sentinel, 2, 2, 0, |
| 6415 | doc: /* Function used as default sentinel for processes. | 6416 | doc: /* Function used as default sentinel for processes. |
| 6416 | This inserts a status message into the process's buffer. */) | 6417 | This inserts a status message into the process's buffer, if there is one. */) |
| 6417 | (Lisp_Object proc, Lisp_Object msg) | 6418 | (Lisp_Object proc, Lisp_Object msg) |
| 6418 | { | 6419 | { |
| 6419 | Lisp_Object buffer, symbol; | 6420 | Lisp_Object buffer, symbol; |