aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-13 14:06:15 +0000
committerGerd Moellmann2000-07-13 14:06:15 +0000
commit2b6e5b1e142826c31e7c4f731d49deaadffba286 (patch)
treecf7fe325fe27b0882d2196f6a9d119e61eacee83 /src
parent4bf4fb05c2bd126436050d00c615b28223bbc99c (diff)
downloademacs-2b6e5b1e142826c31e7c4f731d49deaadffba286.tar.gz
emacs-2b6e5b1e142826c31e7c4f731d49deaadffba286.zip
(AREF): Remove definition.
Diffstat (limited to 'src')
-rw-r--r--src/composite.c2
-rw-r--r--src/fns.c4
2 files changed, 0 insertions, 6 deletions
diff --git a/src/composite.c b/src/composite.c
index 7da4c579ea7..41f89fd6024 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -154,8 +154,6 @@ Lisp_Object composition_temp;
154 (SINGLE_BYTE_CHAR_P (c) ? 1 : CHARSET_WIDTH (CHAR_CHARSET (c))) 154 (SINGLE_BYTE_CHAR_P (c) ? 1 : CHARSET_WIDTH (CHAR_CHARSET (c)))
155 155
156/* The following macros for hash table are copied from fns.c. */ 156/* The following macros for hash table are copied from fns.c. */
157/* Return the contents of vector V at index IDX. */
158#define AREF(V, IDX) XVECTOR (V)->contents[IDX]
159/* Value is the key part of entry IDX in hash table H. */ 157/* Value is the key part of entry IDX in hash table H. */
160#define HASH_KEY(H, IDX) AREF ((H)->key_and_value, 2 * (IDX)) 158#define HASH_KEY(H, IDX) AREF ((H)->key_and_value, 2 * (IDX))
161/* Value is the value part of entry IDX in hash table H. */ 159/* Value is the value part of entry IDX in hash table H. */
diff --git a/src/fns.c b/src/fns.c
index b4a67b4ebe4..23ce5259bf4 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3509,10 +3509,6 @@ base64_decode_1 (from, to, length)
3509 if a `:linear-search t' argument is given to make-hash-table. */ 3509 if a `:linear-search t' argument is given to make-hash-table. */
3510 3510
3511 3511
3512/* Return the contents of vector V at index IDX. */
3513
3514#define AREF(V, IDX) XVECTOR (V)->contents[IDX]
3515
3516/* Value is the key part of entry IDX in hash table H. */ 3512/* Value is the key part of entry IDX in hash table H. */
3517 3513
3518#define HASH_KEY(H, IDX) AREF ((H)->key_and_value, 2 * (IDX)) 3514#define HASH_KEY(H, IDX) AREF ((H)->key_and_value, 2 * (IDX))