diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/process.c b/src/process.c index e6465e2347e..daa0dc68ae6 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1248,10 +1248,7 @@ passed to the filter. | |||
| 1248 | The filter gets two arguments: the process and the string of output. | 1248 | The filter gets two arguments: the process and the string of output. |
| 1249 | The string argument is normally a multibyte string, except: | 1249 | The string argument is normally a multibyte string, except: |
| 1250 | - if the process's input coding system is no-conversion or raw-text, | 1250 | - if the process's input coding system is no-conversion or raw-text, |
| 1251 | it is a unibyte string (the non-converted input), or else | 1251 | it is a unibyte string (the non-converted input). */) |
| 1252 | - if `default-enable-multibyte-characters' is nil, it is a unibyte | ||
| 1253 | string (the result of converting the decoded input multibyte | ||
| 1254 | string to unibyte with `string-make-unibyte'). */) | ||
| 1255 | (Lisp_Object process, Lisp_Object filter) | 1252 | (Lisp_Object process, Lisp_Object filter) |
| 1256 | { | 1253 | { |
| 1257 | CHECK_PROCESS (process); | 1254 | CHECK_PROCESS (process); |
| @@ -3761,8 +3758,7 @@ The stopped state is cleared by `continue-process' and set by | |||
| 3761 | 3758 | ||
| 3762 | :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the | 3759 | :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the |
| 3763 | process filter are multibyte, otherwise they are unibyte. | 3760 | process filter are multibyte, otherwise they are unibyte. |
| 3764 | If this keyword is not specified, the strings are multibyte if | 3761 | If this keyword is not specified, the strings are multibyte. |
| 3765 | the default value of `enable-multibyte-characters' is non-nil. | ||
| 3766 | 3762 | ||
| 3767 | :sentinel SENTINEL -- Install SENTINEL as the process sentinel. | 3763 | :sentinel SENTINEL -- Install SENTINEL as the process sentinel. |
| 3768 | 3764 | ||