aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2000-12-22 00:07:09 +0000
committerKenichi Handa2000-12-22 00:07:09 +0000
commitf455f068fbad461d555b428defdab4a237d40b1e (patch)
treed69377393bd431d9c647e26b965cacdefd8f145c /src
parent17312e44d76f5322d528d5931b87b110a72619c0 (diff)
downloademacs-f455f068fbad461d555b428defdab4a237d40b1e.tar.gz
emacs-f455f068fbad461d555b428defdab4a237d40b1e.zip
(struct ccl_program): New member cr_consumed.
Diffstat (limited to 'src')
-rw-r--r--src/ccl.h9
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 {
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