From 77b37c05572d1028d0ec2c264ac0ed3a89c0f4da Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 25 Apr 2011 14:34:39 -0700 Subject: * lisp.h: (XVECTOR_SIZE): Remove. All uses replaced with ASIZE. (ASIZE): Now contains previous implementation of XVECTOR_SIZE instead of invoking XVECTOR_SIZE. --- src/disptab.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/disptab.h') diff --git a/src/disptab.h b/src/disptab.h index 76fc586f137..e70079d2098 100644 --- a/src/disptab.h +++ b/src/disptab.h @@ -54,7 +54,7 @@ extern Lisp_Object Qdisplay_table; /* Return the current length of the GLYPH table, or 0 if the table isn't currently valid. */ #define GLYPH_TABLE_LENGTH \ - ((VECTORP (Vglyph_table)) ? XVECTOR_SIZE (Vglyph_table) : 0) + ((VECTORP (Vglyph_table)) ? ASIZE (Vglyph_table) : 0) /* Return the current base (for indexing) of the GLYPH table, or 0 if the table isn't currently valid. */ -- cgit v1.2.1