# HG changeset patch # User Kenichi Handa # Date 959080115 0 # Node ID a0dc7fa92f5d23b462ded062b7a5f47c1391642d # Parent df19c765e73ff5946727e08f5cc0c135270808b0 (struct coding_system): Add a comment for src_multibyte and dst_multibyte. diff -r df19c765e73f -r a0dc7fa92f5d src/coding.h --- 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;