aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-13 23:15:53 -0700
committerPaul Eggert2011-04-13 23:15:53 -0700
commit69003fd8410b1d08ad4364af1eb29a4b795f59bb (patch)
tree53188aba5fbd6ff473b0015e1e800eaefc32ae2c /src/alloc.c
parenta7ca3326c4740ed3ed118b794d35d235de49f346 (diff)
downloademacs-69003fd8410b1d08ad4364af1eb29a4b795f59bb.tar.gz
emacs-69003fd8410b1d08ad4364af1eb29a4b795f59bb.zip
2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
* alloc.c (refill_memory_reserve): Now static if !defined REL_ALLOC || defined SYSTEM_MALLOC. * lisp.h (refill_memory_reserve): Declare only if not static.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c
index d1d6323f905..1c793c985eb 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -280,6 +280,9 @@ static void gc_sweep (void);
280static void mark_glyph_matrix (struct glyph_matrix *); 280static void mark_glyph_matrix (struct glyph_matrix *);
281static void mark_face_cache (struct face_cache *); 281static void mark_face_cache (struct face_cache *);
282 282
283#if !defined REL_ALLOC || defined SYSTEM_MALLOC
284static void refill_memory_reserve (void);
285#endif
283static struct Lisp_String *allocate_string (void); 286static struct Lisp_String *allocate_string (void);
284static void compact_small_strings (void); 287static void compact_small_strings (void);
285static void free_large_strings (void); 288static void free_large_strings (void);