diff options
| author | Kim F. Storm | 2003-02-10 13:51:59 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-02-10 13:51:59 +0000 |
| commit | 7392e23cf9b737cbd7d776e6b838f0b31cf42eab (patch) | |
| tree | ff177df0d8c2a624d7cce39c673e18b3943afe32 /src/process.c | |
| parent | ecd869179b6860274bdd576d03e5d26aaa49b4cb (diff) | |
| download | emacs-7392e23cf9b737cbd7d776e6b838f0b31cf42eab.tar.gz emacs-7392e23cf9b737cbd7d776e6b838f0b31cf42eab.zip | |
Doc fixes.
(syms_of_process): Add `:' prefix to QCfilter_multibyte.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/process.c b/src/process.c index 0b41431bdfb..fbe3ae69329 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -133,11 +133,11 @@ Lisp_Object QCname, QCbuffer, QChost, QCservice, QCtype; | |||
| 133 | Lisp_Object QClocal, QCremote, QCcoding; | 133 | Lisp_Object QClocal, QCremote, QCcoding; |
| 134 | Lisp_Object QCserver, QCnowait, QCnoquery, QCstop; | 134 | Lisp_Object QCserver, QCnowait, QCnoquery, QCstop; |
| 135 | Lisp_Object QCsentinel, QClog, QCoptions, QCplist; | 135 | Lisp_Object QCsentinel, QClog, QCoptions, QCplist; |
| 136 | Lisp_Object QCfilter_multibyte; | ||
| 136 | Lisp_Object Qlast_nonmenu_event; | 137 | Lisp_Object Qlast_nonmenu_event; |
| 137 | /* QCfamily is declared and initialized in xfaces.c, | 138 | /* QCfamily is declared and initialized in xfaces.c, |
| 138 | QCfilter in keyboard.c. */ | 139 | QCfilter in keyboard.c. */ |
| 139 | extern Lisp_Object QCfamily, QCfilter; | 140 | extern Lisp_Object QCfamily, QCfilter; |
| 140 | Lisp_Object QCfilter_multibyte; | ||
| 141 | 141 | ||
| 142 | /* Qexit is declared and initialized in eval.c. */ | 142 | /* Qexit is declared and initialized in eval.c. */ |
| 143 | 143 | ||
| @@ -2619,9 +2619,9 @@ The stopped state is cleared by `continue-process' and set by | |||
| 2619 | 2619 | ||
| 2620 | :filter FILTER -- Install FILTER as the process filter. | 2620 | :filter FILTER -- Install FILTER as the process filter. |
| 2621 | 2621 | ||
| 2622 | :filter-multibyte BOOL -- If BOOL is non-nil, a string given to the | 2622 | :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the |
| 2623 | process filter is multibyte, otherwise it is unibyte. If this keyword | 2623 | process filter are multibyte, otherwise they are unibyte. |
| 2624 | is not specified, the string is multibyte iff | 2624 | If this keyword is not specified, the strings are multibyte iff |
| 2625 | `default-enable-multibyte-characters' is non-nil. | 2625 | `default-enable-multibyte-characters' is non-nil. |
| 2626 | 2626 | ||
| 2627 | :sentinel SENTINEL -- Install SENTINEL as the process sentinel. | 2627 | :sentinel SENTINEL -- Install SENTINEL as the process sentinel. |
| @@ -6160,9 +6160,9 @@ DEFUN ("process-coding-system", | |||
| 6160 | 6160 | ||
| 6161 | DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte, | 6161 | DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte, |
| 6162 | Sset_process_filter_multibyte, 2, 2, 0, | 6162 | Sset_process_filter_multibyte, 2, 2, 0, |
| 6163 | doc: /* Set multibyteness of a string given to PROCESS's filter. | 6163 | doc: /* Set multibyteness of the strings given to PROCESS's filter. |
| 6164 | If FLAG is non-nil, the filter is given a multibyte string. | 6164 | If FLAG is non-nil, the filter is given multibyte strings. |
| 6165 | If FLAG is nil, the filter is give a unibyte string. In this case, | 6165 | If FLAG is nil, the filter is given unibyte strings. In this case, |
| 6166 | all character code conversion except for end-of-line conversion is | 6166 | all character code conversion except for end-of-line conversion is |
| 6167 | suppressed. */) | 6167 | suppressed. */) |
| 6168 | (proc, flag) | 6168 | (proc, flag) |
| @@ -6396,11 +6396,11 @@ syms_of_process () | |||
| 6396 | staticpro (&QCoptions); | 6396 | staticpro (&QCoptions); |
| 6397 | QCplist = intern (":plist"); | 6397 | QCplist = intern (":plist"); |
| 6398 | staticpro (&QCplist); | 6398 | staticpro (&QCplist); |
| 6399 | QCfilter_multibyte = intern (":filter-multibyte"); | ||
| 6400 | staticpro (&QCfilter_multibyte); | ||
| 6399 | 6401 | ||
| 6400 | Qlast_nonmenu_event = intern ("last-nonmenu-event"); | 6402 | Qlast_nonmenu_event = intern ("last-nonmenu-event"); |
| 6401 | staticpro (&Qlast_nonmenu_event); | 6403 | staticpro (&Qlast_nonmenu_event); |
| 6402 | QCfilter_multibyte = intern ("filter-multibyte"); | ||
| 6403 | staticpro (&QCfilter_multibyte); | ||
| 6404 | 6404 | ||
| 6405 | staticpro (&Vprocess_alist); | 6405 | staticpro (&Vprocess_alist); |
| 6406 | 6406 | ||