diff options
| author | Kenichi Handa | 2004-01-25 07:31:27 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2004-01-25 07:31:27 +0000 |
| commit | 404202e74630d6ed7533ce2d070ce13098e3315c (patch) | |
| tree | c299f1ad5192cf8906e0070b8b220dda3de1ecad /src/coding.h | |
| parent | 7d64c6ad61b58a0d771be52d325efc60c300c10a (diff) | |
| download | emacs-404202e74630d6ed7533ce2d070ce13098e3315c.tar.gz emacs-404202e74630d6ed7533ce2d070ce13098e3315c.zip | |
(enum coding_attr_index): New member coding_attr_trans_tbl.
(CODING_ATTR_TRANS_TBL): New macro.
Diffstat (limited to 'src/coding.h')
| -rw-r--r-- | src/coding.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/coding.h b/src/coding.h index 40c84dbcf17..2a495e4b3d1 100644 --- a/src/coding.h +++ b/src/coding.h | |||
| @@ -116,6 +116,7 @@ enum coding_attr_index | |||
| 116 | coding_attr_ascii_compat, | 116 | coding_attr_ascii_compat, |
| 117 | coding_attr_decode_tbl, | 117 | coding_attr_decode_tbl, |
| 118 | coding_attr_encode_tbl, | 118 | coding_attr_encode_tbl, |
| 119 | coding_attr_trans_tbl, | ||
| 119 | coding_attr_post_read, | 120 | coding_attr_post_read, |
| 120 | coding_attr_pre_write, | 121 | coding_attr_pre_write, |
| 121 | coding_attr_default_char, | 122 | coding_attr_default_char, |
| @@ -154,6 +155,7 @@ enum coding_attr_index | |||
| 154 | #define CODING_ATTR_ASCII_COMPAT(attrs) AREF (attrs, coding_attr_ascii_compat) | 155 | #define CODING_ATTR_ASCII_COMPAT(attrs) AREF (attrs, coding_attr_ascii_compat) |
| 155 | #define CODING_ATTR_DECODE_TBL(attrs) AREF (attrs, coding_attr_decode_tbl) | 156 | #define CODING_ATTR_DECODE_TBL(attrs) AREF (attrs, coding_attr_decode_tbl) |
| 156 | #define CODING_ATTR_ENCODE_TBL(attrs) AREF (attrs, coding_attr_encode_tbl) | 157 | #define CODING_ATTR_ENCODE_TBL(attrs) AREF (attrs, coding_attr_encode_tbl) |
| 158 | #define CODING_ATTR_TRANS_TBL(attrs) AREF (attrs, coding_attr_trans_tbl) | ||
| 157 | #define CODING_ATTR_POST_READ(attrs) AREF (attrs, coding_attr_post_read) | 159 | #define CODING_ATTR_POST_READ(attrs) AREF (attrs, coding_attr_post_read) |
| 158 | #define CODING_ATTR_PRE_WRITE(attrs) AREF (attrs, coding_attr_pre_write) | 160 | #define CODING_ATTR_PRE_WRITE(attrs) AREF (attrs, coding_attr_pre_write) |
| 159 | #define CODING_ATTR_DEFAULT_CHAR(attrs) AREF (attrs, coding_attr_default_char) | 161 | #define CODING_ATTR_DEFAULT_CHAR(attrs) AREF (attrs, coding_attr_default_char) |