diff options
| author | Kenichi Handa <handa@m17n.org> | 2006-05-18 02:17:39 +0000 |
|---|---|---|
| committer | Kenichi Handa <handa@m17n.org> | 2006-05-18 02:17:39 +0000 |
| commit | ad598c8b58dd85c94b23918b55091e0ea7f027bc (patch) | |
| tree | f812eb7162abd8ee91f928b48d230bc81a6764c0 /src/coding.h | |
| parent | 0bcf87358ccef1934800153eb9692df1195486b1 (diff) | |
| download | emacs-ad598c8b58dd85c94b23918b55091e0ea7f027bc.tar.gz | |
(CODING_ASCII_INCOMPATIBLE_MASK): New macro.
Diffstat (limited to 'src/coding.h')
| -rw-r--r-- | src/coding.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/coding.h b/src/coding.h index 9ace4d1e074..54553a071fa 100644 --- a/src/coding.h +++ b/src/coding.h @@ -443,10 +443,12 @@ struct coding_system Lisp_Object translation_table_for_encode; }; -#define CODING_REQUIRE_FLUSHING_MASK 1 -#define CODING_REQUIRE_DECODING_MASK 2 -#define CODING_REQUIRE_ENCODING_MASK 4 -#define CODING_REQUIRE_DETECTION_MASK 8 +/* Mask bits for (struct coding_system *)->common_flags. */ +#define CODING_REQUIRE_FLUSHING_MASK 0x01 +#define CODING_REQUIRE_DECODING_MASK 0x02 +#define CODING_REQUIRE_ENCODING_MASK 0x04 +#define CODING_REQUIRE_DETECTION_MASK 0x08 +#define CODING_ASCII_INCOMPATIBLE_MASK 0x10 /* Return 1 if the coding system CODING requires specific code to be attached at the tail of converted text. */ |
