diff options
| author | Kenichi Handa | 2000-12-22 00:07:09 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-12-22 00:07:09 +0000 |
| commit | f455f068fbad461d555b428defdab4a237d40b1e (patch) | |
| tree | d69377393bd431d9c647e26b965cacdefd8f145c /src | |
| parent | 17312e44d76f5322d528d5931b87b110a72619c0 (diff) | |
| download | emacs-f455f068fbad461d555b428defdab4a237d40b1e.tar.gz emacs-f455f068fbad461d555b428defdab4a237d40b1e.zip | |
(struct ccl_program): New member cr_consumed.
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 |