diff options
author | Mark Galassi <mark+savannah@galassi.org> | 1997-10-20 17:32:08 +0000 |
---|---|---|
committer | Mark Galassi <mark+savannah@galassi.org> | 1997-10-20 17:32:08 +0000 |
commit | 956328d2a492969fe1a2c3dd7a20fe49cdc38c65 (patch) | |
tree | b74fde1adf1693159b6b8087c08630be25ec6cf5 /libguile/gh_data.c | |
parent | 7fee59bd4a8e7e768dc0ecf26756d5c2aaa8463e (diff) | |
download | guile-956328d2a492969fe1a2c3dd7a20fe49cdc38c65.tar.gz |
a couple of name changes for consistency with ! -> _x
Diffstat (limited to 'libguile/gh_data.c')
-rw-r--r-- | libguile/gh_data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gh_data.c b/libguile/gh_data.c index 15d9afe5b..1be6a6702 100644 --- a/libguile/gh_data.c +++ b/libguile/gh_data.c @@ -276,7 +276,7 @@ gh_make_vector (SCM len, SCM fill) /* set the given element of the given vector to the given value */ SCM -gh_vector_set (SCM vec, SCM pos, SCM val) +gh_vector_set_x (SCM vec, SCM pos, SCM val) { return scm_vector_set_x (vec, pos, val); } |