aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorAndreas Schwab2002-02-15 21:25:41 +0000
committerAndreas Schwab2002-02-15 21:25:41 +0000
commitbdf67c5954e5131530a98a6b4155e50d489a3e40 (patch)
tree4f09a63bcd5ef1f9edb042b47b5be5164859c9f0 /src/alloc.c
parent382d38fa68ae89868b8eb48ab90d7a4584a9eb79 (diff)
downloademacs-bdf67c5954e5131530a98a6b4155e50d489a3e40.tar.gz
emacs-bdf67c5954e5131530a98a6b4155e50d489a3e40.zip
Remove unwanted changes.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 5eafa21c2c7..2592d71d22c 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
125EMACS_INT cons_cells_consed; 125int cons_cells_consed;
126EMACS_INT floats_consed; 126int floats_consed;
127EMACS_INT vector_cells_consed; 127int vector_cells_consed;
128EMACS_INT symbols_consed; 128int symbols_consed;
129EMACS_INT string_chars_consed; 129int string_chars_consed;
130EMACS_INT misc_objects_consed; 130int misc_objects_consed;
131EMACS_INT intervals_consed; 131int intervals_consed;
132EMACS_INT strings_consed; 132int 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
136EMACS_INT gc_cons_threshold; 136int 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
158EMACS_INT undo_limit; 158int undo_limit;
159EMACS_INT undo_strong_limit; 159int 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
218EMACS_INT pure_bytes_used; 218int 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. */