Mercurial > emacs
comparison src/alloc.c @ 109501:c02e8765755d
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)
| author | Juanma Barranquero <lekktu@gmail.com> |
|---|---|
| date | Fri, 23 Jul 2010 19:50:14 +0200 |
| parents | d12162869c07 |
| children | 0781924c2a38 |
comparison
equal
deleted
inserted
replaced
| 109500:3a9a140f18bb | 109501:c02e8765755d |
|---|---|
| 2533 { | 2533 { |
| 2534 float_block = NULL; | 2534 float_block = NULL; |
| 2535 float_block_index = FLOAT_BLOCK_SIZE; /* Force alloc of new float_block. */ | 2535 float_block_index = FLOAT_BLOCK_SIZE; /* Force alloc of new float_block. */ |
| 2536 float_free_list = 0; | 2536 float_free_list = 0; |
| 2537 n_float_blocks = 0; | 2537 n_float_blocks = 0; |
| 2538 } | |
| 2539 | |
| 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 } | 2538 } |
| 2549 | 2539 |
| 2550 | 2540 |
| 2551 /* Return a new float object with value FLOAT_VALUE. */ | 2541 /* Return a new float object with value FLOAT_VALUE. */ |
| 2552 | 2542 |
