diff options
| author | Juanma Barranquero | 2010-07-23 19:50:14 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-07-23 19:50:14 +0200 |
| commit | 33ac04147b6c42796f4c0c16d6aeb261033c171e (patch) | |
| tree | 41a8f653f89ff485760e3fe495bc78fe24e4a967 /src/alloc.c | |
| parent | 225d5e9e16070f908c22e1b40bf9db29fdf17c20 (diff) | |
| download | emacs-33ac04147b6c42796f4c0c16d6aeb261033c171e.tar.gz emacs-33ac04147b6c42796f4c0c16d6aeb261033c171e.zip | |
Remove unused static functions.
* alloc.c (free_float)
* font.c [ENABLE_CHECKING] (font_match_xlfd, font_check_xlfd_parse)
* frame.c (delete_frame_handler)
* ralloc.c (reorder_bloc)
* w32menu.c (menubar_id_to_frame, add_left_right_boundary)
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/alloc.c b/src/alloc.c index 2ce74f97ff7..2ddec3dbe48 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -2538,16 +2538,6 @@ init_float (void) | |||
| 2538 | } | 2538 | } |
| 2539 | 2539 | ||
| 2540 | 2540 | ||
| 2541 | /* Explicitly free a float cell by putting it on the free-list. */ | ||
| 2542 | |||
| 2543 | static void | ||
| 2544 | free_float (struct Lisp_Float *ptr) | ||
| 2545 | { | ||
| 2546 | ptr->u.chain = float_free_list; | ||
| 2547 | float_free_list = ptr; | ||
| 2548 | } | ||
| 2549 | |||
| 2550 | |||
| 2551 | /* Return a new float object with value FLOAT_VALUE. */ | 2541 | /* Return a new float object with value FLOAT_VALUE. */ |
| 2552 | 2542 | ||
| 2553 | Lisp_Object | 2543 | Lisp_Object |