aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1999-07-30 15:49:10 +0000
committerKarl Heuer1999-07-30 15:49:10 +0000
commit331e2d7b605c38839da37474dac7ba22cce1621a (patch)
treee603056d2b06a11c5ad1d833246bbc0e7d6fb164 /src
parent32f532b7e27b1b825efcdfb62b85b38b292c50a9 (diff)
downloademacs-331e2d7b605c38839da37474dac7ba22cce1621a.tar.gz
emacs-331e2d7b605c38839da37474dac7ba22cce1621a.zip
(allocate_vectorlike): Add missing increment.
Diffstat (limited to 'src')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 1ae6cdd153a..c0da91bf61b 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -860,7 +860,7 @@ allocate_vectorlike (len)
860 consing_since_gc += (sizeof (struct Lisp_Vector) 860 consing_since_gc += (sizeof (struct Lisp_Vector)
861 + (len - 1) * sizeof (Lisp_Object)); 861 + (len - 1) * sizeof (Lisp_Object));
862 vector_cells_consed += len; 862 vector_cells_consed += len;
863 n_vectors; 863 n_vectors++;
864 864
865 p->next = all_vectors; 865 p->next = all_vectors;
866 all_vectors = p; 866 all_vectors = p;