diff options
author | Mark Galassi <mark+savannah@galassi.org> | 1998-09-30 06:34:09 +0000 |
---|---|---|
committer | Mark Galassi <mark+savannah@galassi.org> | 1998-09-30 06:34:09 +0000 |
commit | dc9f6d6a7d163cb11df1591e1dbde34d0a2bb3a1 (patch) | |
tree | daf9fa4730b57c0b8e0c8f0b957ed7ebf821f192 | |
parent | 61a9ba48629201402fa7032b7cdc6cce020c2268 (diff) | |
download | guile-dc9f6d6a7d163cb11df1591e1dbde34d0a2bb3a1.tar.gz |
1998-09-30 Mark Galassi <rosalia@cygnus.com>
* gh.h: took out the definitions of vset and vref, since they are
replaced by the proper vector routines that correspond to the R4RS
procedures.
-rw-r--r-- | libguile/ChangeLog | 6 | ||||
-rw-r--r-- | libguile/gh.h | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 5afa7e43b..6ac39f3dd 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,9 @@ +1998-09-30 Mark Galassi <rosalia@cygnus.com> + + * gh.h: took out the definitions of vset and vref, since they are + replaced by the proper vector routines that correspond to the R4RS + procedures. + 1998-09-29 Jim Blandy <jimb@totoro.red-bean.com> * snarf.h: Add SCM_VCELL_INIT and SCM_GLOBAL_VCELL_INIT macros; diff --git a/libguile/gh.h b/libguile/gh.h index 916b42cf8..d3505b272 100644 --- a/libguile/gh.h +++ b/libguile/gh.h @@ -161,8 +161,6 @@ SCM gh_define(char *name, SCM val); ends up being identical to gh_list_to_vector() */ #define gh_vector(ls) scm_vector(ls) SCM gh_make_vector(SCM length, SCM val); -SCM gh_vset(SCM vec, SCM pos, SCM val); -SCM gh_vref(SCM vec, SCM pos); SCM gh_vector_set_x(SCM vec, SCM pos, SCM val); SCM gh_vector_ref(SCM vec, SCM pos); unsigned long gh_vector_length (SCM v); |