aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coding.c b/src/coding.c
index 3c69b07b971..e9227a2ac7b 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -363,10 +363,10 @@ char *coding_category_name[CODING_CATEGORY_IDX_MAX] = {
363 "coding-category-iso-8-2", 363 "coding-category-iso-8-2",
364 "coding-category-iso-7-else", 364 "coding-category-iso-7-else",
365 "coding-category-iso-8-else", 365 "coding-category-iso-8-else",
366 "coding-category-ccl",
366 "coding-category-big5", 367 "coding-category-big5",
367 "coding-category-raw-text", 368 "coding-category-raw-text",
368 "coding-category-binary", 369 "coding-category-binary"
369 "coding-category-ccl"
370}; 370};
371 371
372/* Table of pointers to coding systems corresponding to each coding 372/* Table of pointers to coding systems corresponding to each coding
@@ -3351,7 +3351,7 @@ detect_coding_mask (source, src_bytes, priorities, skip)
3351 mask = detect_coding_big5 (src, src_end); 3351 mask = detect_coding_big5 (src, src_end);
3352 else if (priorities[i] & try & CODING_CATEGORY_MASK_EMACS_MULE) 3352 else if (priorities[i] & try & CODING_CATEGORY_MASK_EMACS_MULE)
3353 mask = detect_coding_emacs_mule (src, src_end); 3353 mask = detect_coding_emacs_mule (src, src_end);
3354 else if (priorities[i] & CODING_CATEGORY_MASK_CCL) 3354 else if (priorities[i] & try & CODING_CATEGORY_MASK_CCL)
3355 mask = detect_coding_ccl (src, src_end); 3355 mask = detect_coding_ccl (src, src_end);
3356 else if (priorities[i] & CODING_CATEGORY_MASK_RAW_TEXT) 3356 else if (priorities[i] & CODING_CATEGORY_MASK_RAW_TEXT)
3357 mask = CODING_CATEGORY_MASK_RAW_TEXT; 3357 mask = CODING_CATEGORY_MASK_RAW_TEXT;