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/coding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/coding.c') diff --git a/src/coding.c b/src/coding.c index efe4a7c34a1..6cd039a0903 100644 --- a/src/coding.c +++ b/src/coding.c @@ -7125,7 +7125,7 @@ handle_composition_annotation (EMACS_INT pos, EMACS_INT limit, components = COMPOSITION_COMPONENTS (prop); if (VECTORP (components)) { - len = XVECTOR_SIZE (components); + len = ASIZE (components); for (i = 0; i < len; i++) *buf++ = XINT (AREF (components, i)); } -- cgit v1.2.1