1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-16 18:50:23 +02:00

* gh.h (gh_vector_to_list): Bugfix. (Thanks to Frank Cieslok.)

This commit is contained in:
Mikael Djurfeldt 1999-08-17 21:31:10 +00:00
parent 6faab78626
commit c56f81195f

View file

@ -176,7 +176,7 @@ unsigned long gh_vector_length (SCM v);
unsigned long gh_uniform_vector_length (SCM v);
SCM gh_uniform_vector_ref (SCM v, SCM ilist);
#define gh_list_to_vector(ls) scm_vector(ls)
#define gh_vector_to_list(v) scm_vector_to_list(ls)
#define gh_vector_to_list(v) scm_vector_to_list(v)
SCM gh_lookup (char *sname);
SCM gh_module_lookup (SCM vector, char *sname);