1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

Fixed a typo/bug in `make-doubly-weak-alist-vector'.

* libguile/weaks.c (scm_make_doubly_weak_alist_vector): Fixed typo
  (endless recursive call).

git-archimport-id: lcourtes@laas.fr--2005-libre/guile-core--boehm-gc--1.9--patch-15
This commit is contained in:
Ludovic Courtes 2006-05-02 21:35:52 +00:00 committed by Ludovic Courtès
parent c367c4b44e
commit b6ed39c411

View file

@ -153,7 +153,7 @@ SCM_DEFINE (scm_make_doubly_weak_alist_vector, "make-doubly-weak-alist-vector",
"buckets. (@pxref{Hash Tables})")
#define FUNC_NAME s_scm_make_doubly_weak_alist_vector
{
return scm_make_doubly_weak_alist_vector (size);
return scm_make_doubly_weak_hash_table (size);
}
#undef FUNC_NAME