# HG changeset patch # User Andreas Schwab # Date 1013807948 0 # Node ID 32f59a921eb9ec5d0dfa253606d1b82b67c4494c # Parent 4d417e1d76837ac3ec1c588b8cb89c2f6e9503bf (NSTATICS): Increase to 1280. diff -r 4d417e1d7683 -r 32f59a921eb9 src/alloc.c --- a/src/alloc.c Fri Feb 15 20:24:11 2002 +0000 +++ b/src/alloc.c Fri Feb 15 21:19:08 2002 +0000 @@ -122,18 +122,18 @@ /* Count the amount of consing of various sorts of space. */ -int cons_cells_consed; -int floats_consed; -int vector_cells_consed; -int symbols_consed; -int string_chars_consed; -int misc_objects_consed; -int intervals_consed; -int strings_consed; +EMACS_INT cons_cells_consed; +EMACS_INT floats_consed; +EMACS_INT vector_cells_consed; +EMACS_INT symbols_consed; +EMACS_INT string_chars_consed; +EMACS_INT misc_objects_consed; +EMACS_INT intervals_consed; +EMACS_INT strings_consed; /* Number of bytes of consing since GC before another GC should be done. */ -int gc_cons_threshold; +EMACS_INT gc_cons_threshold; /* Nonzero during GC. */ @@ -155,8 +155,8 @@ /* Two limits controlling how much undo information to keep. */ -int undo_limit; -int undo_strong_limit; +EMACS_INT undo_limit; +EMACS_INT undo_strong_limit; /* Number of live and free conses etc. */ @@ -215,7 +215,7 @@ /* Index in pure at which next pure object will be allocated.. */ -int pure_bytes_used; +EMACS_INT pure_bytes_used; /* If nonzero, this is a warning delivered by malloc and not yet displayed. */ @@ -396,7 +396,7 @@ /* Addresses of staticpro'd variables. */ -#define NSTATICS 1026 +#define NSTATICS 1280 Lisp_Object *staticvec[NSTATICS] = {0}; /* Index of next unused slot in staticvec. */