diff options
-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); |