diff options
author | Kenichi Handa <handa@m17n.org> | 2000-05-23 11:08:35 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-05-23 11:08:35 +0000 |
commit | d23ee514831a01d1d36d18de2bae63e7373b807f (patch) | |
tree | 51738e745436d091327deacc1105627678c70ecd /src/coding.h | |
parent | ded2e8a55241f1775b72239acdee7d5c5c7c8819 (diff) | |
download | emacs-d23ee514831a01d1d36d18de2bae63e7373b807f.tar.gz |
(struct coding_system): Add a comment for src_multibyte and
dst_multibyte.
Diffstat (limited to 'src/coding.h')
-rw-r--r-- | src/coding.h | 4 |
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 /* Index number of coding category of the coding system. */ int category_idx; + /* The following two members specify how characters 128..159 are + represented in source and destination text respectively. 1 means + they are represented by 2-byte sequence, 0 means they are + represented by 1-byte as is (see the comment in charset.h). */ unsigned src_multibyte : 1; unsigned dst_multibyte : 1; |