summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@lilypond.org>2007-01-25 01:16:24 +0000
committerHan-Wen Nienhuys <hanwen@lilypond.org>2007-01-25 01:16:24 +0000
commit2a8d66b090cdbf9646714653f64359acc83f13fe (patch)
tree158b3a0ea143029ec3318b5db2c761a5ad197d9e
parent8cb7939c78e71ef9be636d9570d181a6e41933ff (diff)
*** empty log message ***
-rw-r--r--libguile/ChangeLog4
-rw-r--r--libguile/vectors.c7
2 files changed, 4 insertions, 7 deletions
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 <hanwen@lilypond.org>
+
+ * vector.c: remove comment as per kryde's request.
+
2007-01-22 Han-Wen Nienhuys <hanwen@lilypond.org>
* 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"