1998-09-30 Mark Galassi <rosalia@cygnus.com>
authorMark Galassi <mark+savannah@galassi.org>
Wed, 30 Sep 1998 06:34:09 +0000 (06:34 +0000)
committerMark Galassi <mark+savannah@galassi.org>
Wed, 30 Sep 1998 06:34:09 +0000 (06:34 +0000)
        * 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
libguile/gh.h

index 5afa7e4..6ac39f3 100644 (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;
index 916b42c..d3505b2 100644 (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);