From a4e5be2ab504da50c741954547cb28453498d478 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 31 Jan 2023 13:22:12 +0100 Subject: [PATCH] make-tuple should set non quoted state. --- aocla.c | 1 + 1 file changed, 1 insertion(+) diff --git a/aocla.c b/aocla.c index a50510e..9b5cc12 100644 --- a/aocla.c +++ b/aocla.c @@ -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; }