diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 05d2db274da..cf7778c05f6 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -273,6 +273,7 @@ static Lisp_Object Qpost_gc_hook; | |||
| 273 | static void mark_buffer (Lisp_Object); | 273 | static void mark_buffer (Lisp_Object); |
| 274 | static void mark_terminals (void); | 274 | static void mark_terminals (void); |
| 275 | static void gc_sweep (void); | 275 | static void gc_sweep (void); |
| 276 | static Lisp_Object make_pure_vector (ptrdiff_t); | ||
| 276 | static void mark_glyph_matrix (struct glyph_matrix *); | 277 | static void mark_glyph_matrix (struct glyph_matrix *); |
| 277 | static void mark_face_cache (struct face_cache *); | 278 | static void mark_face_cache (struct face_cache *); |
| 278 | 279 | ||
| @@ -4937,7 +4938,7 @@ make_pure_float (double num) | |||
| 4937 | /* Return a vector with room for LEN Lisp_Objects allocated from | 4938 | /* Return a vector with room for LEN Lisp_Objects allocated from |
| 4938 | pure space. */ | 4939 | pure space. */ |
| 4939 | 4940 | ||
| 4940 | Lisp_Object | 4941 | static Lisp_Object |
| 4941 | make_pure_vector (ptrdiff_t len) | 4942 | make_pure_vector (ptrdiff_t len) |
| 4942 | { | 4943 | { |
| 4943 | Lisp_Object new; | 4944 | Lisp_Object new; |