diff options
-rw-r--r-- | functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.c b/functions.c index 1479af0..d96deb6 100644 --- a/functions.c +++ b/functions.c @@ -585,7 +585,7 @@ fnIndexGenerator(Array *right) if(right->size == 0) return rundfn(L"⊂⍬", nil, nil, nil, nil); else - result = rundfn(L"↑,⌾⌿⍳¨⍵", nil, nil, nil, right); + result = rundfn(L"⊃⍣(0<≢⍵),⌾⌿⍳¨⍵", nil, nil, nil, right); }else throwerror(nil, ERank); return result; |