diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1999-08-17 21:31:10 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1999-08-17 21:31:10 +0000 |
commit | c56f81195f203c1e30a579f4f288413d14643a9f (patch) | |
tree | 4051130792f6c3c917266e98814eddc109eb10a5 /libguile/gh.h | |
parent | 6faab786263d8c6fc0689d578d75201bee5c0f72 (diff) | |
download | guile-c56f81195f203c1e30a579f4f288413d14643a9f.tar.gz |
* gh.h (gh_vector_to_list): Bugfix. (Thanks to Frank Cieslok.)
Diffstat (limited to 'libguile/gh.h')
-rw-r--r-- | libguile/gh.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |