diff options
| author | Kenichi Handa | 2003-05-30 07:58:37 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-05-30 07:58:37 +0000 |
| commit | 034060e4e71334fc74e0dfe6e728989e268f1f74 (patch) | |
| tree | cc10b6d00cfb391f1a353b62993b8c84e545d5d8 /src | |
| parent | b671ed5e8e942b8a804ba3ed7ce2bfc601f496ac (diff) | |
| download | emacs-034060e4e71334fc74e0dfe6e728989e268f1f74.tar.gz emacs-034060e4e71334fc74e0dfe6e728989e268f1f74.zip | |
(struct ccl_program) <eight_bit_control: Comment fixed.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 12 | ||||
| -rw-r--r-- | src/ccl.h | 7 |
2 files changed, 17 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b2e91effc1e..34f81336e6d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2003-05-30 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * coding.c (ccl_coding_driver): Set ccl->eight_bit_control | ||
| 4 | properly before calling ccl_driver. | ||
| 5 | |||
| 6 | * ccl.h (struct ccl_program) <eight_bit_control: Comment fixed. | ||
| 7 | |||
| 8 | * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when it is | ||
| 9 | nonzero. | ||
| 10 | (ccl_driver): Initialize extra_bytes to ccl->eight_bit_control. | ||
| 11 | (setup_ccl_program): Initialize ccl->eight_bit_control to zero. | ||
| 12 | |||
| 1 | 2003-05-29 Kenichi Handa <handa@m17n.org> | 13 | 2003-05-29 Kenichi Handa <handa@m17n.org> |
| 2 | 14 | ||
| 3 | * coding.c (decode_coding_iso2022): Pay attention to the byte | 15 | * coding.c (decode_coding_iso2022): Pay attention to the byte |
| @@ -65,8 +65,11 @@ struct ccl_program { | |||
| 65 | system. */ | 65 | system. */ |
| 66 | int suppress_error; /* If nonzero, don't insert error | 66 | int suppress_error; /* If nonzero, don't insert error |
| 67 | message in the output. */ | 67 | message in the output. */ |
| 68 | int eight_bit_control; /* Set to nonzero if CCL_WRITE_CHAR | 68 | int eight_bit_control; /* If nonzero, ccl_driver counts all |
| 69 | writes eight-bit-control char. */ | 69 | eight-bit-control bytes written by |
| 70 | CCL_WRITE_CHAR. After execution, | ||
| 71 | if no such byte is written, set | ||
| 72 | this value to zero. */ | ||
| 70 | }; | 73 | }; |
| 71 | 74 | ||
| 72 | /* This data type is used for the spec field of the structure | 75 | /* This data type is used for the spec field of the structure |