1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-25 19:57:36 +00:00

FRONTPANEL: Fix bug that disabled repeat processing

This commit is contained in:
Mark Pizzolato
2017-12-15 16:08:10 -08:00
parent 2de2b9bd80
commit 52990b3bc2

View File

@@ -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);