Mercurial > emacs
changeset 29106:a0dc7fa92f5d
(struct coding_system): Add a comment for src_multibyte and
dst_multibyte.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 23 May 2000 11:08:35 +0000 |
parents | df19c765e73f |
children | 203ba1f77b7b |
files | src/coding.h |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/coding.h Tue May 23 10:49:33 2000 +0000 +++ b/src/coding.h Tue May 23 11:08:35 2000 +0000 @@ -397,6 +397,10 @@ /* 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;