From: Gerd Moellmann Date: Thu, 13 Jul 2000 14:06:15 +0000 (+0000) Subject: (AREF): Remove definition. X-Git-Tag: emacs-pretest-21.0.90~2868 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2b6e5b1e142826c31e7c4f731d49deaadffba286;p=emacs.git (AREF): Remove definition. --- 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; (SINGLE_BYTE_CHAR_P (c) ? 1 : CHARSET_WIDTH (CHAR_CHARSET (c))) /* The following macros for hash table are copied from fns.c. */ -/* Return the contents of vector V at index IDX. */ -#define AREF(V, IDX) XVECTOR (V)->contents[IDX] /* Value is the key part of entry IDX in hash table H. */ #define HASH_KEY(H, IDX) AREF ((H)->key_and_value, 2 * (IDX)) /* 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) if a `:linear-search t' argument is given to make-hash-table. */ -/* Return the contents of vector V at index IDX. */ - -#define AREF(V, IDX) XVECTOR (V)->contents[IDX] - /* Value is the key part of entry IDX in hash table H. */ #define HASH_KEY(H, IDX) AREF ((H)->key_and_value, 2 * (IDX))