mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
* alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
* font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c: * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct access to `contents' member of Lisp_Vector objects with AREF and ASET where appropriate.
This commit is contained in:
parent
68f1241189
commit
28be1ada0f
20 changed files with 205 additions and 201 deletions
|
|
@ -1867,8 +1867,8 @@ integer, it is incremented each time that symbol's function is called. */);
|
|||
{
|
||||
int i = 256;
|
||||
while (i--)
|
||||
XVECTOR (Vbyte_code_meter)->contents[i] =
|
||||
Fmake_vector (make_number (256), make_number (0));
|
||||
ASET (Vbyte_code_meter, i,
|
||||
Fmake_vector (make_number (256), make_number (0)));
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue