From 07ca1354ebf93e350cd962a61a6922f155723a46 Mon Sep 17 00:00:00 2001 From: Giles Atkinson <“gatk555@gmail.com”> Date: Thu, 7 May 2026 18:07:53 +0100 Subject: [PATCH] Disable output redirection for "let" so that normal comparison operators may be used. --- src/frontend/control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/control.c b/src/frontend/control.c index 9c982ef23..5349c5063 100644 --- a/src/frontend/control.c +++ b/src/frontend/control.c @@ -59,7 +59,7 @@ int stackp = 0; */ /* no redirection after the following commands (we may need more to add here!) */ -static char *noredirect[] = { "stop", "define", "circbyline", NULL}; +static char *noredirect[] = { "if", "let", "stop", "define", "circbyline", NULL}; /* This function returns the (first) structure wit the label s */