# HG changeset patch # User Kenichi Handa # Date 1147918659 0 # Node ID 85b353760b1cc0b891f809210d93dd551baa2716 # Parent b6ef71fed69387f186d4d3844b6e645e46a7ce0b (CODING_ASCII_INCOMPATIBLE_MASK): New macro. diff -r b6ef71fed693 -r 85b353760b1c src/coding.h --- a/src/coding.h Wed May 17 22:54:44 2006 +0000 +++ b/src/coding.h Thu May 18 02:17:39 2006 +0000 @@ -443,10 +443,12 @@ 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. */