diff options
| author | Paul Eggert | 2012-05-30 00:59:44 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-05-30 00:59:44 -0700 |
| commit | 72cb32cf2f0938dd7dc733eed77b1ed1e497b053 (patch) | |
| tree | f4d0023295c84088d6bfbceca83c52ed18c1d1c7 /src/alloc.c | |
| parent | 61b108cc62d69c96c20b9e23b248185591563c1f (diff) | |
| download | emacs-72cb32cf2f0938dd7dc733eed77b1ed1e497b053.tar.gz emacs-72cb32cf2f0938dd7dc733eed77b1ed1e497b053.zip | |
* alloc.c, lisp.h (make_pure_vector): Now static.
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; |