1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

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.
This commit is contained in:
Mark Galassi 1998-09-30 06:34:09 +00:00
parent 61a9ba4862
commit dc9f6d6a7d
2 changed files with 6 additions and 2 deletions

View file

@ -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;

View file

@ -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);