From 52990b3bc221ed0ac54953a9eb55284ca9532246 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Fri, 15 Dec 2017 16:08:10 -0800 Subject: [PATCH] FRONTPANEL: Fix bug that disabled repeat processing --- sim_console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim_console.c b/sim_console.c index 10e83a73..99ebf53f 100644 --- a/sim_console.c +++ b/sim_console.c @@ -1464,7 +1464,7 @@ for (i=(was_active_command ? sim_rem_cmd_active_line : 0); } else { if ((rem->repeat_pending) && /* New repeat pending */ - (rem->act = NULL) && /* AND no prior still active */ + (rem->act == NULL) && /* AND no prior still active */ (!tmxr_input_pending_ln (lp))) { /* AND no session input pending */ rem->repeat_pending = FALSE; sim_rem_setact (rem-sim_rem_consoles, rem->repeat_action);