diff options
| author | Juanma Barranquero | 2007-10-19 10:22:53 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-10-19 10:22:53 +0000 |
| commit | a6c93f61e31c1dfab621d7f8fbcac0ddfe757a54 (patch) | |
| tree | 13210f4f74b98a0518b9e984171982410d440218 /src | |
| parent | 1dd743c9b9094d9fb01a3a9867198a4f72161efe (diff) | |
| download | emacs-a6c93f61e31c1dfab621d7f8fbcac0ddfe757a54.tar.gz emacs-a6c93f61e31c1dfab621d7f8fbcac0ddfe757a54.zip | |
(Fset_process_filter): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/process.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 08fbd81d6fb..4c1ed394e31 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-10-19 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * process.c (Fset_process_filter): Doc fix. | ||
| 4 | |||
| 1 | 2007-10-17 Glenn Morris <rgm@gnu.org> | 5 | 2007-10-17 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * minibuf.c (Qcompletion_ignore_case): New Lisp_Object. | 7 | * minibuf.c (Qcompletion_ignore_case): New Lisp_Object. |
diff --git a/src/process.c b/src/process.c index fd8e2c94a4d..09705c436b7 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1002,7 +1002,7 @@ DEFUN ("process-mark", Fprocess_mark, Sprocess_mark, | |||
| 1002 | DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter, | 1002 | DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter, |
| 1003 | 2, 2, 0, | 1003 | 2, 2, 0, |
| 1004 | doc: /* Give PROCESS the filter function FILTER; nil means no filter. | 1004 | doc: /* Give PROCESS the filter function FILTER; nil means no filter. |
| 1005 | t means stop accepting output from the process. | 1005 | A value of t means stop accepting output from the process. |
| 1006 | 1006 | ||
| 1007 | When a process has a filter, its buffer is not used for output. | 1007 | When a process has a filter, its buffer is not used for output. |
| 1008 | Instead, each time it does output, the entire string of output is | 1008 | Instead, each time it does output, the entire string of output is |