From: Kenichi Handa Date: Tue, 23 May 2000 11:08:35 +0000 (+0000) Subject: (struct coding_system): Add a comment for src_multibyte and X-Git-Tag: emacs-pretest-21.0.90~3792 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d23ee514831a01d1d36d18de2bae63e7373b807f;p=emacs.git (struct coding_system): Add a comment for src_multibyte and dst_multibyte. --- 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;