aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-04-03 12:13:45 +0000
committerGerd Moellmann2000-04-03 12:13:45 +0000
commitfa7dad5bfc46028b557dd43d6e0d7fe50c21c5a4 (patch)
treeeaf99dcdc3e38bb8ad5233b97a55174754331c7b /src
parentacb3b16fad8de3bad69d98c5b88864692c537dc7 (diff)
downloademacs-fa7dad5bfc46028b557dd43d6e0d7fe50c21c5a4.tar.gz
emacs-fa7dad5bfc46028b557dd43d6e0d7fe50c21c5a4.zip
(larger_vector): Make externally visible.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index 852c821f1bb..b328be2b790 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3475,7 +3475,6 @@ Lisp_Object Qhash_table_test;
3475static struct Lisp_Hash_Table *check_hash_table P_ ((Lisp_Object)); 3475static struct Lisp_Hash_Table *check_hash_table P_ ((Lisp_Object));
3476static int next_almost_prime P_ ((int)); 3476static int next_almost_prime P_ ((int));
3477static int get_key_arg P_ ((Lisp_Object, int, Lisp_Object *, char *)); 3477static int get_key_arg P_ ((Lisp_Object, int, Lisp_Object *, char *));
3478static Lisp_Object larger_vector P_ ((Lisp_Object, int, Lisp_Object));
3479static void maybe_resize_hash_table P_ ((struct Lisp_Hash_Table *)); 3478static void maybe_resize_hash_table P_ ((struct Lisp_Hash_Table *));
3480static int cmpfn_eql P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned, 3479static int cmpfn_eql P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned,
3481 Lisp_Object, unsigned)); 3480 Lisp_Object, unsigned));
@@ -3564,7 +3563,7 @@ get_key_arg (key, nargs, args, used)
3564 size NEW_SIZE, NEW_SIZE >= VEC->size. Entries in the resulting 3563 size NEW_SIZE, NEW_SIZE >= VEC->size. Entries in the resulting
3565 vector that are not copied from VEC are set to INIT. */ 3564 vector that are not copied from VEC are set to INIT. */
3566 3565
3567static Lisp_Object 3566Lisp_Object
3568larger_vector (vec, new_size, init) 3567larger_vector (vec, new_size, init)
3569 Lisp_Object vec; 3568 Lisp_Object vec;
3570 int new_size; 3569 int new_size;