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
977b85f4
Commit
977b85f4
authored
Jun 15, 2009
by
Andreas Schwab
Browse files
(detect_coding_utf_16): Fix typo counting odd bytes.
parent
37438e77
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/coding.c
src/coding.c
+1
-1
No files found.
src/ChangeLog
View file @
977b85f4
2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
* coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
2009-06-15 Kenichi Handa <handa@m17n.org>
* process.c (status_message): Fix previous change. Be sure to
...
...
src/coding.c
View file @
977b85f4
...
...
@@ -1682,7 +1682,7 @@ detect_coding_utf_16 (coding, detect_info)
}
if (! o[c2])
{
o[c
1
] = 1;
o[c
2
] = 1;
o_num++;
if (o_num >= 128)
break;
...
...
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