1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-18 11:50:38 -08:00

* lisp.h: (XVECTOR_SIZE): Remove. All uses replaced with ASIZE.

(ASIZE): Now contains previous implementation of XVECTOR_SIZE
instead of invoking XVECTOR_SIZE.
This commit is contained in:
Paul Eggert 2011-04-25 14:34:39 -07:00
parent b102ceb110
commit 77b37c0557
29 changed files with 97 additions and 94 deletions

View file

@ -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));
}