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
Open sidebar
emacs
emacs
Commits
d90ed3b4
Commit
d90ed3b4
authored
Aug 08, 2002
by
Ken Raeburn
Browse files
(Ffind_operation_coding_system): Fix Lisp_Object/int mixup.
parent
7f787cfd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/coding.c
src/coding.c
+1
-1
No files found.
src/ChangeLog
View file @
d90ed3b4
2002-08-08 Ken Raeburn <raeburn@mit.edu>
* coding.c (Ffind_operation_coding_system): Fix Lisp_Object/int
mixup.
2002-08-08 Kenichi Handa <handa@etl.go.jp>
* coding.c (Ffind_operation_coding_system): For write-region, if
...
...
src/coding.c
View file @
d90ed3b4
...
...
@@ -6884,7 +6884,7 @@ usage: (find-operation-coding-system OPERATION ARGUMENTS ...) */)
if
(
EQ
(
operation
,
Qwrite_region
)
&&
nargs
>
5
&&
STRINGP
(
args
[
5
]))
target_idx
=
4
;
target_idx
=
make_number
(
4
)
;
target
=
args
[
XINT
(
target_idx
)
+
1
];
if
(
!
(
STRINGP
(
target
)
||
(
EQ
(
operation
,
Qopen_network_stream
)
&&
INTEGERP
(
target
))))
...
...
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