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
9f0526cb
Commit
9f0526cb
authored
Feb 28, 2009
by
Jason Rumney
Browse files
(detect_coding_charset): If not checking latin extra,
fail on characters between 0x80 and 0xA0. (Bug#2354)
parent
3122b073
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/coding.c
src/coding.c
+2
-2
No files found.
src/coding.c
View file @
9f0526cb
...
...
@@ -5128,8 +5128,8 @@ detect_coding_charset (coding, detect_info)
if (c >= 0x80)
{
if (c < 0xA0
&& check_latin_extra
&&
NILP (XVECTOR (Vlatin_extra_code_table)->contents[c]))
&&
(!
check_latin_extra
||
NILP (XVECTOR (Vlatin_extra_code_table)->contents[c]))
)
break;
found = CATEGORY_MASK_CHARSET;
}
...
...
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