diff options
author | Mark H Weaver <mhw@netris.org> | 2014-09-20 04:09:14 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-09-20 05:44:15 -0400 |
commit | 8f230e3341c344afe891cc45d0370c42a7813ace (patch) | |
tree | 906abc441a915836cc4896a47257251854e0bec0 | |
parent | 97c520fd3ff5ae0305b6d236e0bc31f794a6cce6 (diff) | |
download | guile-8f230e3341c344afe891cc45d0370c42a7813ace.tar.gz |
SRFI-43: vector-concatenate: Fix error message.
* module/srfi/srfi-43.scm (vector-concatenate): Fix the 'who' of an
error message.
-rw-r--r-- | module/srfi/srfi-43.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/srfi/srfi-43.scm b/module/srfi/srfi-43.scm index 88a3f3fec..c1612aa37 100644 --- a/module/srfi/srfi-43.scm +++ b/module/srfi/srfi-43.scm @@ -304,7 +304,7 @@ from the subsequent locations in VEC ..." Append each vector in LIST-OF-VECTORS. Equivalent to: (apply vector-append LIST-OF-VECTORS)" - (assert-vectors vs 'vector-append) + (assert-vectors vs 'vector-concatenate) (%vector-concatenate vs)) (define (vector-empty? vec) |