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
67091e59
Commit
67091e59
authored
Mar 08, 2001
by
Kenichi Handa
Browse files
(detect_coding_mask): Fix the incorrect handling of arg MULTIBYTEP.
parent
a1b12fe9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/coding.c
src/coding.c
+1
-1
No files found.
src/coding.c
View file @
67091e59
...
...
@@ -3980,7 +3980,7 @@ detect_coding_mask (source, src_bytes, priorities, skip, multibytep)
int try;
if (multibytep && c == LEADING_CODE_8_BIT_CONTROL)
c =
*
src
++
- 0x20;
c = src
[1]
- 0x20;
if (c < 0xA0)
{
...
...
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