Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8a33cf7b
Commit
8a33cf7b
authored
Jun 15, 2000
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(decode_coding_emacs_mule): Always set src_base at the
start of the while loop.
parent
c25b53a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/coding.c
src/coding.c
+1
-2
No files found.
src/coding.c
View file @
8a33cf7b
...
...
@@ -584,12 +584,11 @@ decode_coding_emacs_mule (coding, source, destination, src_bytes, dst_bytes)
unsigned
char
*
src_base
;
coding
->
produced_char
=
0
;
while
(
src
<
src_end
)
while
(
(
src
_base
=
src
)
<
src_end
)
{
unsigned
char
tmp
[
MAX_MULTIBYTE_LENGTH
],
*
p
;
int
bytes
;
src_base
=
src
;
if
(
UNIBYTE_STR_AS_MULTIBYTE_P
(
src
,
src_end
-
src
,
bytes
))
{
p
=
src
;
...
...
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