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