From 8d91f44026147c15640c856f84a0593e62336926 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 16 Jul 2022 17:23:11 +0200 Subject: [PATCH] Suppress I/O redirection for command 'circbyline'. This enables sending commands like circbyline btest testnode 0 v=((v(in1) - v(in2)) < 0.1 ? 0.111 : v(in1)) --- 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 64c8884a9..fb697f8e0 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", NULL }; +static char *noredirect[] = { "stop", "define", "circbyline", NULL}; /* This function returns the (first) structure wit the label s */