diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2012-06-19 20:56:28 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2012-06-19 20:56:28 +0400 |
commit | 28be1ada0fb9a4b51cf361dc45208e764bd34143 (patch) | |
tree | 30a21470e485d1d9f397d97dcb9a386c578ab746 /src/alloc.c | |
parent | 68f12411893785de1cfc2c24ec36059e49af5d55 (diff) | |
download | emacs-28be1ada0fb9a4b51cf361dc45208e764bd34143.tar.gz emacs-28be1ada0fb9a4b51cf361dc45208e764bd34143.tar.bz2 emacs-28be1ada0fb9a4b51cf361dc45208e764bd34143.zip |
* 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.
Diffstat (limited to 'src/alloc.c')
-rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 5c6297faae5..7af3b17078e 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -5294,7 +5294,7 @@ Does not copy symbols. Copies strings without text properties. */) size &= PSEUDOVECTOR_SIZE_MASK; vec = XVECTOR (make_pure_vector (size)); for (i = 0; i < size; i++) - vec->contents[i] = Fpurecopy (XVECTOR (obj)->contents[i]); + vec->contents[i] = Fpurecopy (AREF (obj, i)); if (COMPILEDP (obj)) { XSETPVECTYPE (vec, PVEC_COMPILED); |