make-tuple should set non quoted state.

This commit is contained in:
antirez 2023-01-31 13:22:12 +01:00
parent 2a0dd067d3
commit a4e5be2ab5

View file

@ -1058,6 +1058,7 @@ int procMakeTuple(aoclactx *ctx) {
obj *l = stackPop(ctx);
l = getUnsharedObject(l);
l->type = OBJ_TYPE_TUPLE;
l->l.quoted = 0;
stackPush(ctx,l);
return 0;
}