aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
authorKenichi Handa2000-05-23 11:08:35 +0000
committerKenichi Handa2000-05-23 11:08:35 +0000
commitd23ee514831a01d1d36d18de2bae63e7373b807f (patch)
tree51738e745436d091327deacc1105627678c70ecd /src/coding.h
parentded2e8a55241f1775b72239acdee7d5c5c7c8819 (diff)
downloademacs-d23ee514831a01d1d36d18de2bae63e7373b807f.tar.gz
emacs-d23ee514831a01d1d36d18de2bae63e7373b807f.zip
(struct coding_system): Add a comment for src_multibyte and
dst_multibyte.
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