aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.h')
-rw-r--r--src/coding.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/coding.h b/src/coding.h
index b12802e5dcc..93615b91ada 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -397,6 +397,10 @@ struct coding_system
397 /* Index number of coding category of the coding system. */ 397 /* Index number of coding category of the coding system. */
398 int category_idx; 398 int category_idx;
399 399
400 /* The following two members specify how characters 128..159 are
401 represented in source and destination text respectively. 1 means
402 they are represented by 2-byte sequence, 0 means they are
403 represented by 1-byte as is (see the comment in charset.h). */
400 unsigned src_multibyte : 1; 404 unsigned src_multibyte : 1;
401 unsigned dst_multibyte : 1; 405 unsigned dst_multibyte : 1;
402 406