diff options
| author | Juanma Barranquero | 2007-10-19 10:30:05 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-10-19 10:30:05 +0000 |
| commit | 7b82c3b635c43691f6fb42ca6955c308b81ddafb (patch) | |
| tree | 8447eeb7632631a4f774b9e1486262e9a82a544f /src | |
| parent | d66d6ac0286658620023697835f526862171368a (diff) | |
| download | emacs-7b82c3b635c43691f6fb42ca6955c308b81ddafb.tar.gz emacs-7b82c3b635c43691f6fb42ca6955c308b81ddafb.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 c50b6286407..11ba1348412 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-18 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty | 7 | * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty |
diff --git a/src/process.c b/src/process.c index 37181158a19..bbf754b971d 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1007,7 +1007,7 @@ DEFUN ("process-mark", Fprocess_mark, Sprocess_mark, | |||
| 1007 | DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter, | 1007 | DEFUN ("set-process-filter", Fset_process_filter, Sset_process_filter, |
| 1008 | 2, 2, 0, | 1008 | 2, 2, 0, |
| 1009 | doc: /* Give PROCESS the filter function FILTER; nil means no filter. | 1009 | doc: /* Give PROCESS the filter function FILTER; nil means no filter. |
| 1010 | t means stop accepting output from the process. | 1010 | A value of t means stop accepting output from the process. |
| 1011 | 1011 | ||
| 1012 | When a process has a filter, its buffer is not used for output. | 1012 | When a process has a filter, its buffer is not used for output. |
| 1013 | Instead, each time it does output, the entire string of output is | 1013 | Instead, each time it does output, the entire string of output is |