Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
7392e23c
Commit
7392e23c
authored
Feb 10, 2003
by
Kim F. Storm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc fixes.
(syms_of_process): Add `:' prefix to QCfilter_multibyte.
parent
ecd86917
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
9 deletions
+14
-9
src/ChangeLog
src/ChangeLog
+5
-0
src/process.c
src/process.c
+9
-9
No files found.
src/ChangeLog
View file @
7392e23c
2003-02-10 Kim F. Storm <storm@cua.dk>
* process.c: Doc fixes.
(syms_of_process): Add `:' prefix to QCfilter_multibyte.
2003-02-10 Kenichi Handa <handa@m17n.org>
2003-02-10 Kenichi Handa <handa@m17n.org>
* fns.c (Fstring_to_multibyte): Fix typo in the docstring.
* fns.c (Fstring_to_multibyte): Fix typo in the docstring.
...
...
src/process.c
View file @
7392e23c
...
@@ -133,11 +133,11 @@ Lisp_Object QCname, QCbuffer, QChost, QCservice, QCtype;
...
@@ -133,11 +133,11 @@ Lisp_Object QCname, QCbuffer, QChost, QCservice, QCtype;
Lisp_Object
QClocal
,
QCremote
,
QCcoding
;
Lisp_Object
QClocal
,
QCremote
,
QCcoding
;
Lisp_Object
QCserver
,
QCnowait
,
QCnoquery
,
QCstop
;
Lisp_Object
QCserver
,
QCnowait
,
QCnoquery
,
QCstop
;
Lisp_Object
QCsentinel
,
QClog
,
QCoptions
,
QCplist
;
Lisp_Object
QCsentinel
,
QClog
,
QCoptions
,
QCplist
;
Lisp_Object
QCfilter_multibyte
;
Lisp_Object
Qlast_nonmenu_event
;
Lisp_Object
Qlast_nonmenu_event
;
/* QCfamily is declared and initialized in xfaces.c,
/* QCfamily is declared and initialized in xfaces.c,
QCfilter in keyboard.c. */
QCfilter in keyboard.c. */
extern
Lisp_Object
QCfamily
,
QCfilter
;
extern
Lisp_Object
QCfamily
,
QCfilter
;
Lisp_Object QCfilter_multibyte;
/* Qexit is declared and initialized in eval.c. */
/* Qexit is declared and initialized in eval.c. */
...
@@ -2619,9 +2619,9 @@ The stopped state is cleared by `continue-process' and set by
...
@@ -2619,9 +2619,9 @@ The stopped state is cleared by `continue-process' and set by
:filter FILTER -- Install FILTER as the process filter.
:filter FILTER -- Install FILTER as the process filter.
:filter-multibyte BOOL -- If BOOL is non-nil,
a string
given to the
:filter-multibyte BOOL -- If BOOL is non-nil,
strings
given to the
process filter
is multibyte, otherwise it is unibyte. If this keyword
process filter
are multibyte, otherwise they are unibyte.
is not specified, the string is
multibyte iff
If this keyword is not specified, the strings are
multibyte iff
`default-enable-multibyte-characters' is non-nil.
`default-enable-multibyte-characters' is non-nil.
:sentinel SENTINEL -- Install SENTINEL as the process sentinel.
:sentinel SENTINEL -- Install SENTINEL as the process sentinel.
...
@@ -6160,9 +6160,9 @@ DEFUN ("process-coding-system",
...
@@ -6160,9 +6160,9 @@ DEFUN ("process-coding-system",
DEFUN
(
"set-process-filter-multibyte"
,
Fset_process_filter_multibyte
,
DEFUN
(
"set-process-filter-multibyte"
,
Fset_process_filter_multibyte
,
Sset_process_filter_multibyte
,
2
,
2
,
0
,
Sset_process_filter_multibyte
,
2
,
2
,
0
,
doc: /* Set multibyteness of
a string
given to PROCESS's filter.
doc
:
/* Set multibyteness of
the strings
given to PROCESS's filter.
If FLAG is non-nil, the filter is given
a multibyte string
.
If FLAG is non-nil, the filter is given
multibyte strings
.
If FLAG is nil, the filter is give
a unibyte string
. In this case,
If FLAG is nil, the filter is give
n unibyte strings
. In this case,
all character code conversion except for end-of-line conversion is
all character code conversion except for end-of-line conversion is
suppressed. */
)
suppressed. */
)
(
proc
,
flag
)
(
proc
,
flag
)
...
@@ -6396,11 +6396,11 @@ syms_of_process ()
...
@@ -6396,11 +6396,11 @@ syms_of_process ()
staticpro
(
&
QCoptions
);
staticpro
(
&
QCoptions
);
QCplist
=
intern
(
":plist"
);
QCplist
=
intern
(
":plist"
);
staticpro
(
&
QCplist
);
staticpro
(
&
QCplist
);
QCfilter_multibyte
=
intern
(
":filter-multibyte"
);
staticpro
(
&
QCfilter_multibyte
);
Qlast_nonmenu_event
=
intern
(
"last-nonmenu-event"
);
Qlast_nonmenu_event
=
intern
(
"last-nonmenu-event"
);
staticpro
(
&
Qlast_nonmenu_event
);
staticpro
(
&
Qlast_nonmenu_event
);
QCfilter_multibyte = intern ("filter-multibyte");
staticpro (&QCfilter_multibyte);
staticpro
(
&
Vprocess_alist
);
staticpro
(
&
Vprocess_alist
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment