From c56f81195f203c1e30a579f4f288413d14643a9f Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Tue, 17 Aug 1999 21:31:10 +0000 Subject: [PATCH] * gh.h (gh_vector_to_list): Bugfix. (Thanks to Frank Cieslok.) --- libguile/gh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/gh.h b/libguile/gh.h index 8a4e1caae..69fbad045 100644 --- a/libguile/gh.h +++ b/libguile/gh.h @@ -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);