From 3602f5aa5d58a0a688dde6ddb3842a41f95c0f52 Mon Sep 17 00:00:00 2001 From: primo-ppcg Date: Thu, 25 May 2023 18:27:31 +0700 Subject: [PATCH] Update boot.janet `kvs` is not yet defined at this point. --- src/boot/boot.janet | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index 3be1c411..5cdc54b0 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -952,7 +952,10 @@ (def ninds (length ,inds)) (case ninds 0 (each x ,ind (map-aggregator ,maptype ,res (,f x))) - ,;(kvs(tabseq [k :range [1 5]] k ~(map-n ,k ,maptype ,res ,f ,ind ,inds))) + 1 (map-n 1 ,maptype ,res ,f ,ind ,inds) + 2 (map-n 2 ,maptype ,res ,f ,ind ,inds) + 3 (map-n 3 ,maptype ,res ,f ,ind ,inds) + 4 (map-n 4 ,maptype ,res ,f ,ind ,inds) (do (def iter-keys (array/new-filled ninds)) (def call-buffer (array/new-filled ninds))