aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index b83b621bc7d..7275a01bb73 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -209,6 +209,7 @@ Lisp_Object Qchar_table_extra_slots;
209 209
210static Lisp_Object Qpost_gc_hook; 210static Lisp_Object Qpost_gc_hook;
211 211
212static void free_save_value (Lisp_Object);
212static void mark_terminals (void); 213static void mark_terminals (void);
213static void gc_sweep (void); 214static void gc_sweep (void);
214static Lisp_Object make_pure_vector (ptrdiff_t); 215static Lisp_Object make_pure_vector (ptrdiff_t);
@@ -3417,7 +3418,7 @@ make_save_value (void *pointer, ptrdiff_t integer)
3417/* Free a Lisp_Save_Value object. Do not use this function 3418/* Free a Lisp_Save_Value object. Do not use this function
3418 if SAVE contains pointer other than returned by xmalloc. */ 3419 if SAVE contains pointer other than returned by xmalloc. */
3419 3420
3420void 3421static void
3421free_save_value (Lisp_Object save) 3422free_save_value (Lisp_Object save)
3422{ 3423{
3423 xfree (XSAVE_POINTER (save, 0)); 3424 xfree (XSAVE_POINTER (save, 0));