From dc9f6d6a7d163cb11df1591e1dbde34d0a2bb3a1 Mon Sep 17 00:00:00 2001 From: Mark Galassi Date: Wed, 30 Sep 1998 06:34:09 +0000 Subject: [PATCH] 1998-09-30 Mark Galassi * 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. --- libguile/ChangeLog | 6 ++++++ 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 + + * 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 * 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);