diff --git a/libguile/ChangeLog b/libguile/ChangeLog index d53274640..2b764f9cb 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,7 @@ +2007-01-25 Han-Wen Nienhuys + + * vector.c: remove comment as per kryde's request. + 2007-01-22 Han-Wen Nienhuys * vectors.c (s_scm_vector_move_right_x): complain about naming. diff --git a/libguile/vectors.c b/libguile/vectors.c index 33a216a95..fef48cc3e 100644 --- a/libguile/vectors.c +++ b/libguile/vectors.c @@ -439,10 +439,6 @@ scm_i_vector_equal_p (SCM x, SCM y) } -/* - * Naming is inconsistent: this routine modifies its 3rd argument, - * rather than 1st. --hwn - */ SCM_DEFINE (scm_vector_move_left_x, "vector-move-left!", 5, 0, 0, (SCM vec1, SCM start1, SCM end1, SCM vec2, SCM start2), "Copy elements from @var{vec1}, positions @var{start1} to @var{end1},\n" @@ -481,9 +477,6 @@ SCM_DEFINE (scm_vector_move_left_x, "vector-move-left!", 5, 0, 0, } #undef FUNC_NAME -/* - * See previous naming comment. --hwn - */ SCM_DEFINE (scm_vector_move_right_x, "vector-move-right!", 5, 0, 0, (SCM vec1, SCM start1, SCM end1, SCM vec2, SCM start2), "Copy elements from @var{vec1}, positions @var{start1} to @var{end1},\n"