aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2003-02-10 13:51:59 +0000
committerKim F. Storm2003-02-10 13:51:59 +0000
commit7392e23cf9b737cbd7d776e6b838f0b31cf42eab (patch)
treeff177df0d8c2a624d7cce39c673e18b3943afe32 /src
parentecd869179b6860274bdd576d03e5d26aaa49b4cb (diff)
downloademacs-7392e23cf9b737cbd7d776e6b838f0b31cf42eab.tar.gz
emacs-7392e23cf9b737cbd7d776e6b838f0b31cf42eab.zip
Doc fixes.
(syms_of_process): Add `:' prefix to QCfilter_multibyte.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/process.c18
2 files changed, 14 insertions, 9 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 99ddad3b45e..80544aba446 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12003-02-10 Kim F. Storm <storm@cua.dk>
2
3 * process.c: Doc fixes.
4 (syms_of_process): Add `:' prefix to QCfilter_multibyte.
5
12003-02-10 Kenichi Handa <handa@m17n.org> 62003-02-10 Kenichi Handa <handa@m17n.org>
2 7
3 * fns.c (Fstring_to_multibyte): Fix typo in the docstring. 8 * fns.c (Fstring_to_multibyte): Fix typo in the docstring.
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;
133Lisp_Object QClocal, QCremote, QCcoding; 133Lisp_Object QClocal, QCremote, QCcoding;
134Lisp_Object QCserver, QCnowait, QCnoquery, QCstop; 134Lisp_Object QCserver, QCnowait, QCnoquery, QCstop;
135Lisp_Object QCsentinel, QClog, QCoptions, QCplist; 135Lisp_Object QCsentinel, QClog, QCoptions, QCplist;
136Lisp_Object QCfilter_multibyte;
136Lisp_Object Qlast_nonmenu_event; 137Lisp_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. */
139extern Lisp_Object QCfamily, QCfilter; 140extern Lisp_Object QCfamily, QCfilter;
140Lisp_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
2623process filter is multibyte, otherwise it is unibyte. If this keyword 2623process filter are multibyte, otherwise they are unibyte.
2624is not specified, the string is multibyte iff 2624If 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
6161DEFUN ("set-process-filter-multibyte", Fset_process_filter_multibyte, 6161DEFUN ("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.
6164If FLAG is non-nil, the filter is given a multibyte string. 6164If FLAG is non-nil, the filter is given multibyte strings.
6165If FLAG is nil, the filter is give a unibyte string. In this case, 6165If FLAG is nil, the filter is given unibyte strings. In this case,
6166all character code conversion except for end-of-line conversion is 6166all character code conversion except for end-of-line conversion is
6167suppressed. */) 6167suppressed. */)
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