1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-06 11:55:48 +00:00

* src/fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)

(sweep_weak_table): Remove redundant prototypes.
This commit is contained in:
Stefan Monnier 2012-10-01 14:59:52 -04:00
parent 62a81506f8
commit 9eb71b9c7d
2 changed files with 5 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
* fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
(sweep_weak_table): Remove redundant prototypes.
2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
* emacs.c: Move the inclusion of TERM_HEADER after including

View File

@ -3337,14 +3337,6 @@ Lisp_Object Qeq, Qeql, Qequal;
Lisp_Object QCtest, QCsize, QCrehash_size, QCrehash_threshold, QCweakness;
static Lisp_Object Qhash_table_test, Qkey_or_value, Qkey_and_value;
/* Function prototypes. */
static struct Lisp_Hash_Table *check_hash_table (Lisp_Object);
static ptrdiff_t get_key_arg (Lisp_Object, ptrdiff_t, Lisp_Object *, char *);
static void maybe_resize_hash_table (struct Lisp_Hash_Table *);
static bool sweep_weak_table (struct Lisp_Hash_Table *, bool);
/***********************************************************************
Utilities