]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 1 Oct 2012 18:59:52 +0000 (14:59 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 1 Oct 2012 18:59:52 +0000 (14:59 -0400)
(sweep_weak_table): Remove redundant prototypes.

src/ChangeLog
src/fns.c

index fd523dd0f1e53f7fd09991593a441cc7fc73e3df..ee7543a28304361919b537b30172612d4b1c9701 100644 (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
index d789bbd809b8521813b7adb0ec2712f878b8dfea..c999b5b08b9d8580dfaf59f885f00e293b8c128d 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -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);
-
-
 \f
 /***********************************************************************
                               Utilities