mirror of
https://github.com/antirez/aocla
synced 2024-12-27 09:58:32 +01:00
make-tuple should set non quoted state.
This commit is contained in:
parent
2a0dd067d3
commit
a4e5be2ab5
1 changed files with 1 additions and 0 deletions
1
aocla.c
1
aocla.c
|
@ -1058,6 +1058,7 @@ int procMakeTuple(aoclactx *ctx) {
|
||||||
obj *l = stackPop(ctx);
|
obj *l = stackPop(ctx);
|
||||||
l = getUnsharedObject(l);
|
l = getUnsharedObject(l);
|
||||||
l->type = OBJ_TYPE_TUPLE;
|
l->type = OBJ_TYPE_TUPLE;
|
||||||
|
l->l.quoted = 0;
|
||||||
stackPush(ctx,l);
|
stackPush(ctx,l);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue