]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct coding_system): Add a comment for src_multibyte and
authorKenichi Handa <handa@m17n.org>
Tue, 23 May 2000 11:08:35 +0000 (11:08 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 23 May 2000 11:08:35 +0000 (11:08 +0000)
dst_multibyte.

src/coding.h

index b12802e5dccd0cb203d6f49c27e48929c9b08411..93615b91ada5c36b53133ba7dd46f9794e130b84 100644 (file)
@@ -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;