summaryrefslogtreecommitdiff
path: root/libguile/gh.h
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>1999-08-17 21:31:10 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>1999-08-17 21:31:10 +0000
commitc56f81195f203c1e30a579f4f288413d14643a9f (patch)
tree4051130792f6c3c917266e98814eddc109eb10a5 /libguile/gh.h
parent6faab786263d8c6fc0689d578d75201bee5c0f72 (diff)
downloadguile-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.h2
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);