diff options
| author | Juanma Barranquero | 2008-02-14 01:05:46 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-02-14 01:05:46 +0000 |
| commit | 04e05596eb9f1f83aac22095d5e4420fa3ac0b09 (patch) | |
| tree | 5d93f1d2401ab668fdeaa5f1a5ecfc817882065f /src/coding.h | |
| parent | bebb740e117f36730f723346cf8b53ca5fb0178c (diff) | |
| download | emacs-04e05596eb9f1f83aac22095d5e4420fa3ac0b09.tar.gz emacs-04e05596eb9f1f83aac22095d5e4420fa3ac0b09.zip | |
Use AREF, not ASLOT.
Diffstat (limited to 'src/coding.h')
| -rw-r--r-- | src/coding.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/coding.h b/src/coding.h index eba77273308..dae16a9ea88 100644 --- a/src/coding.h +++ b/src/coding.h | |||
| @@ -161,23 +161,23 @@ enum coding_attr_index | |||
| 161 | 161 | ||
| 162 | /* Macros to access an element of an attribute vector. */ | 162 | /* Macros to access an element of an attribute vector. */ |
| 163 | 163 | ||
| 164 | #define CODING_ATTR_BASE_NAME(attrs) ASLOT (attrs, coding_attr_base_name) | 164 | #define CODING_ATTR_BASE_NAME(attrs) AREF (attrs, coding_attr_base_name) |
| 165 | #define CODING_ATTR_TYPE(attrs) ASLOT (attrs, coding_attr_type) | 165 | #define CODING_ATTR_TYPE(attrs) AREF (attrs, coding_attr_type) |
| 166 | #define CODING_ATTR_CHARSET_LIST(attrs) ASLOT (attrs, coding_attr_charset_list) | 166 | #define CODING_ATTR_CHARSET_LIST(attrs) AREF (attrs, coding_attr_charset_list) |
| 167 | #define CODING_ATTR_MNEMONIC(attrs) ASLOT (attrs, coding_attr_mnemonic) | 167 | #define CODING_ATTR_MNEMONIC(attrs) AREF (attrs, coding_attr_mnemonic) |
| 168 | #define CODING_ATTR_DOCSTRING(attrs) ASLOT (attrs, coding_attr_docstring) | 168 | #define CODING_ATTR_DOCSTRING(attrs) AREF (attrs, coding_attr_docstring) |
| 169 | #define CODING_ATTR_ASCII_COMPAT(attrs) ASLOT (attrs, coding_attr_ascii_compat) | 169 | #define CODING_ATTR_ASCII_COMPAT(attrs) AREF (attrs, coding_attr_ascii_compat) |
| 170 | #define CODING_ATTR_DECODE_TBL(attrs) ASLOT (attrs, coding_attr_decode_tbl) | 170 | #define CODING_ATTR_DECODE_TBL(attrs) AREF (attrs, coding_attr_decode_tbl) |
| 171 | #define CODING_ATTR_ENCODE_TBL(attrs) ASLOT (attrs, coding_attr_encode_tbl) | 171 | #define CODING_ATTR_ENCODE_TBL(attrs) AREF (attrs, coding_attr_encode_tbl) |
| 172 | #define CODING_ATTR_TRANS_TBL(attrs) ASLOT (attrs, coding_attr_trans_tbl) | 172 | #define CODING_ATTR_TRANS_TBL(attrs) AREF (attrs, coding_attr_trans_tbl) |
| 173 | #define CODING_ATTR_POST_READ(attrs) ASLOT (attrs, coding_attr_post_read) | 173 | #define CODING_ATTR_POST_READ(attrs) AREF (attrs, coding_attr_post_read) |
| 174 | #define CODING_ATTR_PRE_WRITE(attrs) ASLOT (attrs, coding_attr_pre_write) | 174 | #define CODING_ATTR_PRE_WRITE(attrs) AREF (attrs, coding_attr_pre_write) |
| 175 | #define CODING_ATTR_DEFAULT_CHAR(attrs) ASLOT (attrs, coding_attr_default_char) | 175 | #define CODING_ATTR_DEFAULT_CHAR(attrs) AREF (attrs, coding_attr_default_char) |
| 176 | #define CODING_ATTR_FOR_UNIBYTE(attrs) ASLOT (attrs, coding_attr_for_unibyte) | 176 | #define CODING_ATTR_FOR_UNIBYTE(attrs) AREF (attrs, coding_attr_for_unibyte) |
| 177 | #define CODING_ATTR_FLUSHING(attrs) ASLOT (attrs, coding_attr_flushing) | 177 | #define CODING_ATTR_FLUSHING(attrs) AREF (attrs, coding_attr_flushing) |
| 178 | #define CODING_ATTR_PLIST(attrs) ASLOT (attrs, coding_attr_plist) | 178 | #define CODING_ATTR_PLIST(attrs) AREF (attrs, coding_attr_plist) |
| 179 | #define CODING_ATTR_CATEGORY(attrs) ASLOT (attrs, coding_attr_category) | 179 | #define CODING_ATTR_CATEGORY(attrs) AREF (attrs, coding_attr_category) |
| 180 | #define CODING_ATTR_SAFE_CHARSETS(attrs)ASLOT (attrs, coding_attr_safe_charsets) | 180 | #define CODING_ATTR_SAFE_CHARSETS(attrs)AREF (attrs, coding_attr_safe_charsets) |
| 181 | 181 | ||
| 182 | 182 | ||
| 183 | /* Return the name of a coding system specified by ID. */ | 183 | /* Return the name of a coding system specified by ID. */ |