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:
parent
b102ceb110
commit
77b37c0557
29 changed files with 97 additions and 94 deletions
|
|
@ -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));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue