diff options
| author | Paul Eggert | 2013-01-15 13:38:58 -0800 |
|---|---|---|
| committer | Paul Eggert | 2013-01-15 13:38:58 -0800 |
| commit | 963ea40fe96634a01b24aef4fc39acf9a4236eb7 (patch) | |
| tree | 9f4dea570aa1bbbaf068d8bc66db8f4b7cb0ba6e /src/alloc.c | |
| parent | 1a353a145dba49c91cdf4d2189ebe6579cae24ac (diff) | |
| download | emacs-963ea40fe96634a01b24aef4fc39acf9a4236eb7.tar.gz emacs-963ea40fe96634a01b24aef4fc39acf9a4236eb7.zip | |
* src/alloc.c (free_save_value): 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 b83b621bc7d..7275a01bb73 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -209,6 +209,7 @@ Lisp_Object Qchar_table_extra_slots; | |||
| 209 | 209 | ||
| 210 | static Lisp_Object Qpost_gc_hook; | 210 | static Lisp_Object Qpost_gc_hook; |
| 211 | 211 | ||
| 212 | static void free_save_value (Lisp_Object); | ||
| 212 | static void mark_terminals (void); | 213 | static void mark_terminals (void); |
| 213 | static void gc_sweep (void); | 214 | static void gc_sweep (void); |
| 214 | static Lisp_Object make_pure_vector (ptrdiff_t); | 215 | static 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 | ||
| 3420 | void | 3421 | static void |
| 3421 | free_save_value (Lisp_Object save) | 3422 | free_save_value (Lisp_Object save) |
| 3422 | { | 3423 | { |
| 3423 | xfree (XSAVE_POINTER (save, 0)); | 3424 | xfree (XSAVE_POINTER (save, 0)); |