summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2020-12-29 00:14:55 -0800
committerKaz Kylheku <kaz@kylheku.com>2020-12-29 00:14:55 -0800
commit764d555e6284e4314c3149a558fe5311eeb361c9 (patch)
tree40fb5c0327c5cde5d220a9d27bf929a782c09491
parent623c57e57c8757a005b863954f05e8b0f697221b (diff)
downloadtxr-764d555e6284e4314c3149a558fe5311eeb361c9.tar.gz
txr-764d555e6284e4314c3149a558fe5311eeb361c9.tar.bz2
txr-764d555e6284e4314c3149a558fe5311eeb361c9.zip
shuffle/nshuffle: eliminate wasteful vector copy.
* lib.c (nshuffle): When shuffling the vector that was converted from the list, use nshuffle rather shuffle, because it's a temporary, non-shared object we can mutate.
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index c4150b60..b3873c95 100644
--- a/lib.c
+++ b/lib.c
@@ -9663,7 +9663,7 @@ val nshuffle(val seq)
case SEQ_LISTLIKE:
if (cdr(seq))
{
- val v = shuffle(vec_list(seq));
+ val v = nshuffle(vec_list(seq), randstate);
val i, l;
for (l = seq, i = zero; l; i = succ(i), l = cdr(l))