aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/coding.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c
index 020a1401575..176d115d445 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -5128,8 +5128,8 @@ detect_coding_charset (coding, detect_info)
5128 if (c >= 0x80) 5128 if (c >= 0x80)
5129 { 5129 {
5130 if (c < 0xA0 5130 if (c < 0xA0
5131 && check_latin_extra 5131 && (!check_latin_extra
5132 && NILP (XVECTOR (Vlatin_extra_code_table)->contents[c])) 5132 || NILP (XVECTOR (Vlatin_extra_code_table)->contents[c])))
5133 break; 5133 break;
5134 found = CATEGORY_MASK_CHARSET; 5134 found = CATEGORY_MASK_CHARSET;
5135 } 5135 }