~ chicken-core (chicken-5) e3300654463facfdde8f7867bd7b18a686b7451b


commit e3300654463facfdde8f7867bd7b18a686b7451b
Author:     Kooda <kooda@upyum.com>
AuthorDate: Tue Jun 18 16:51:16 2019 +0200
Commit:     Kooda <kooda@upyum.com>
CommitDate: Tue Jun 18 16:54:28 2019 +0200

    Add a missing export of list->s64vector in srfi-4 (thanks John Cowan)

diff --git a/NEWS b/NEWS
index 9c845888..aa5f1d14 100644
--- a/NEWS
+++ b/NEWS
@@ -24,6 +24,7 @@
     byte prefix inside the symbol name.  This ensures read-write
     invariance of symbols which start with a low-byte character
     (fixes #1077, except for keywords, which start with NUL bytes).
+  - Fix a missing export (list->s64vector) in SRFI-4.
 
 - Runtime system
   - Keywords are now distinct types; they are not a subtype of symbols.
diff --git a/srfi-4.scm b/srfi-4.scm
index a5f9468a..6faaa475 100644
--- a/srfi-4.scm
+++ b/srfi-4.scm
@@ -69,8 +69,8 @@ EOF
    u64vector u64vector->blob u64vector->blob/shared u64vector->list
    u64vector-length u64vector-ref u64vector-set! u64vector?
    list->f32vector list->f64vector list->s16vector list->s32vector
-   list->s8vector list->u16vector list->u32vector list->u8vector
-   list->u64vector
+   list->s64vector list->s8vector list->u16vector list->u32vector
+   list->u8vector list->u64vector
    make-f32vector make-f64vector make-s16vector make-s32vector
    make-s64vector make-s8vector make-u16vector make-u32vector
    make-u64vector make-u8vector
Trap