diff options
author | Kenichi Handa <handa@m17n.org> | 2000-12-22 00:07:09 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-12-22 00:07:09 +0000 |
commit | f455f068fbad461d555b428defdab4a237d40b1e (patch) | |
tree | d69377393bd431d9c647e26b965cacdefd8f145c /src/ccl.h | |
parent | 17312e44d76f5322d528d5931b87b110a72619c0 (diff) | |
download | emacs-f455f068fbad461d555b428defdab4a237d40b1e.tar.gz |
(struct ccl_program): New member cr_consumed.
Diffstat (limited to 'src/ccl.h')
-rw-r--r-- | src/ccl.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/ccl.h b/src/ccl.h index 17f2c4d302b..2012aeb3955 100644 --- a/src/ccl.h +++ b/src/ccl.h @@ -55,9 +55,14 @@ struct ccl_program { int stack_idx; /* How deep the call of CCL_Call is nested. */ int eol_type; /* When the CCL program is used for encoding by a coding system, set to - the eol_type of the coding - system. */ + the eol_type of the coding system. + In other cases, always + CODING_EOL_LF. */ int multibyte; /* 1 if the source text is multibyte. */ + int cr_consumed; /* Flag for encoding DOS-like EOL + format when the CCL program is used + for encoding by a coding + system. */ }; /* This data type is used for the spec field of the structure |