aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorAndreas Schwab2002-02-15 21:19:08 +0000
committerAndreas Schwab2002-02-15 21:19:08 +0000
commit382d38fa68ae89868b8eb48ab90d7a4584a9eb79 (patch)
tree3297bd4ca16df954a8dd2598a5f59c48033bffc6 /src/alloc.c
parentf99041786479f96ae9cbd934e06088ecec62e297 (diff)
downloademacs-382d38fa68ae89868b8eb48ab90d7a4584a9eb79.tar.gz
emacs-382d38fa68ae89868b8eb48ab90d7a4584a9eb79.zip
(NSTATICS): Increase to 1280.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/alloc.c b/src/alloc.c
index d83a6bbf2ee..5eafa21c2c7 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -122,18 +122,18 @@ int consing_since_gc;
122 122
123/* Count the amount of consing of various sorts of space. */ 123/* Count the amount of consing of various sorts of space. */
124 124
125int cons_cells_consed; 125EMACS_INT cons_cells_consed;
126int floats_consed; 126EMACS_INT floats_consed;
127int vector_cells_consed; 127EMACS_INT vector_cells_consed;
128int symbols_consed; 128EMACS_INT symbols_consed;
129int string_chars_consed; 129EMACS_INT string_chars_consed;
130int misc_objects_consed; 130EMACS_INT misc_objects_consed;
131int intervals_consed; 131EMACS_INT intervals_consed;
132int strings_consed; 132EMACS_INT strings_consed;
133 133
134/* Number of bytes of consing since GC before another GC should be done. */ 134/* Number of bytes of consing since GC before another GC should be done. */
135 135
136int gc_cons_threshold; 136EMACS_INT gc_cons_threshold;
137 137
138/* Nonzero during GC. */ 138/* Nonzero during GC. */
139 139
@@ -155,8 +155,8 @@ int malloc_sbrk_unused;
155 155
156/* Two limits controlling how much undo information to keep. */ 156/* Two limits controlling how much undo information to keep. */
157 157
158int undo_limit; 158EMACS_INT undo_limit;
159int undo_strong_limit; 159EMACS_INT undo_strong_limit;
160 160
161/* Number of live and free conses etc. */ 161/* Number of live and free conses etc. */
162 162
@@ -215,7 +215,7 @@ static size_t pure_bytes_used_before_overflow;
215 215
216/* Index in pure at which next pure object will be allocated.. */ 216/* Index in pure at which next pure object will be allocated.. */
217 217
218int pure_bytes_used; 218EMACS_INT pure_bytes_used;
219 219
220/* If nonzero, this is a warning delivered by malloc and not yet 220/* If nonzero, this is a warning delivered by malloc and not yet
221 displayed. */ 221 displayed. */
@@ -396,7 +396,7 @@ struct gcpro *gcprolist;
396 396
397/* Addresses of staticpro'd variables. */ 397/* Addresses of staticpro'd variables. */
398 398
399#define NSTATICS 1026 399#define NSTATICS 1280
400Lisp_Object *staticvec[NSTATICS] = {0}; 400Lisp_Object *staticvec[NSTATICS] = {0};
401 401
402/* Index of next unused slot in staticvec. */ 402/* Index of next unused slot in staticvec. */