Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix join/empty first string semantics.
Unbusts at least autoref.t on Rakudo JVM.
  • Loading branch information
jnthn committed Jun 21, 2013
1 parent eba21ca commit cfe397c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/jvm/runtime/org/perl6/nqp/runtime/Ops.java
Expand Up @@ -2578,7 +2578,7 @@ public static String join(String delimiter, SixModelObject arr, ThreadContext tc

final int numElems = (int) arr.elems(tc);
for (int i = 0; i < numElems; i++) {
if (sb.length() > 0) {
if (i > 0) {
sb.append(delimiter);
}
if (prim == StorageSpec.BP_STR) {
Expand Down

0 comments on commit cfe397c

Please sign in to comment.