diff options
| author | Paul Eggert | 2011-04-13 23:15:53 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-13 23:15:53 -0700 |
| commit | 69003fd8410b1d08ad4364af1eb29a4b795f59bb (patch) | |
| tree | 53188aba5fbd6ff473b0015e1e800eaefc32ae2c /src/alloc.c | |
| parent | a7ca3326c4740ed3ed118b794d35d235de49f346 (diff) | |
| download | emacs-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.c | 3 |
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); | |||
| 280 | static void mark_glyph_matrix (struct glyph_matrix *); | 280 | static void mark_glyph_matrix (struct glyph_matrix *); |
| 281 | static void mark_face_cache (struct face_cache *); | 281 | static void mark_face_cache (struct face_cache *); |
| 282 | 282 | ||
| 283 | #if !defined REL_ALLOC || defined SYSTEM_MALLOC | ||
| 284 | static void refill_memory_reserve (void); | ||
| 285 | #endif | ||
| 283 | static struct Lisp_String *allocate_string (void); | 286 | static struct Lisp_String *allocate_string (void); |
| 284 | static void compact_small_strings (void); | 287 | static void compact_small_strings (void); |
| 285 | static void free_large_strings (void); | 288 | static void free_large_strings (void); |