diff options
author | Kenichi Handa <handa@m17n.org> | 2000-08-11 05:45:10 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-08-11 05:45:10 +0000 |
commit | 975ddbf53c2305aa7cb0be023a440baa867d3974 (patch) | |
tree | aa6d1fb971f99e2e553c88e4c8702617050deade /src/ccl.h | |
parent | 7a837c899237d7644c95f00ad613e84e6b17746f (diff) | |
download | emacs-975ddbf53c2305aa7cb0be023a440baa867d3974.tar.gz |
(struct ccl_program): New member multibyte.
Diffstat (limited to 'src/ccl.h')
-rw-r--r-- | src/ccl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ccl.h b/src/ccl.h index 9086edf6d7d..17f2c4d302b 100644 --- a/src/ccl.h +++ b/src/ccl.h @@ -42,8 +42,8 @@ struct ccl_program { condition flag of relational operations. */ int private_state; /* CCL instruction may use this - for private use, mainly for preservation - internal states for suspending. + for private use, mainly for saving + internal states on suspending. This variable is set to 0 when ccl is set up. */ int last_block; /* Set to 1 while processing the last @@ -57,6 +57,7 @@ struct ccl_program { encoding by a coding system, set to the eol_type of the coding system. */ + int multibyte; /* 1 if the source text is multibyte. */ }; /* This data type is used for the spec field of the structure |