diff --git a/lib.c b/lib.c index cbfc2e3..42100ea 100644 --- a/lib.c +++ b/lib.c @@ -1467,10 +1467,10 @@ static void push_delimited_array(struct context* ctx) { break; } } - // Save for cleanup + /* Save for cleanup */ counter = idx; - // Don't copy the delimiter + /* Don't copy the delimiter */ idx -= 1; ary->elements = malloc(sizeof(struct elem) * idx); @@ -1481,17 +1481,17 @@ static void push_delimited_array(struct context* ctx) { ary->capacity = idx; ary->top = 0; - // Copy the data + /* Copy the data */ for(i = currentRoutine->top - idx; i < currentRoutine->top; ++i) { ary->elements[ary->top] = currentRoutine->stack[i]; ++(ary->top); } - // Cleanup + /* Cleanup */ while(counter--) { ink_pop(ctx); } - // Put value in place + /* Put value in place */ ink_push(ctx, a); }