aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
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. */)
5294 size &= PSEUDOVECTOR_SIZE_MASK; 5294 size &= PSEUDOVECTOR_SIZE_MASK;
5295 vec = XVECTOR (make_pure_vector (size)); 5295 vec = XVECTOR (make_pure_vector (size));
5296 for (i = 0; i < size; i++) 5296 for (i = 0; i < size; i++)
5297 vec->contents[i] = Fpurecopy (XVECTOR (obj)->contents[i]); 5297 vec->contents[i] = Fpurecopy (AREF (obj, i));
5298 if (COMPILEDP (obj)) 5298 if (COMPILEDP (obj))
5299 { 5299 {
5300 XSETPVECTYPE (vec, PVEC_COMPILED); 5300 XSETPVECTYPE (vec, PVEC_COMPILED);