diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ccl.h | 9 |
1 files changed, 7 insertions, 2 deletions
| @@ -55,9 +55,14 @@ struct ccl_program { | |||
| 55 | int stack_idx; /* How deep the call of CCL_Call is nested. */ | 55 | int stack_idx; /* How deep the call of CCL_Call is nested. */ |
| 56 | int eol_type; /* When the CCL program is used for | 56 | int eol_type; /* When the CCL program is used for |
| 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 system. |
| 59 | system. */ | 59 | In other cases, always |
| 60 | CODING_EOL_LF. */ | ||
| 60 | int multibyte; /* 1 if the source text is multibyte. */ | 61 | int multibyte; /* 1 if the source text is multibyte. */ |
| 62 | int cr_consumed; /* Flag for encoding DOS-like EOL | ||
| 63 | format when the CCL program is used | ||
| 64 | for encoding by a coding | ||
| 65 | system. */ | ||
| 61 | }; | 66 | }; |
| 62 | 67 | ||
| 63 | /* This data type is used for the spec field of the structure | 68 | /* This data type is used for the spec field of the structure |