From 09f69f13b597f2cb27804eb093195bb74977bd9d Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sun, 22 Oct 2017 18:44:14 -0700 Subject: [PATCH] SCP: Fix command context reporting when errors occur in QUIET mode --- scp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scp.c b/scp.c index 77e72e39..f4618436 100644 --- a/scp.c +++ b/scp.c @@ -3140,7 +3140,7 @@ do { } if ((stat >= SCPE_BASE) && (stat != SCPE_EXIT) && /* error from cmd? */ (stat != SCPE_STEP)) { - if (!echo && !sim_quiet && /* report if not echoing */ + if (!echo && /* report if not echoing */ !stat_nomessage && /* and not suppressing messages */ !(cmdp && cmdp->message)) { /* and not handling them specially */ sim_printf("%s> %s\n", do_position(), sim_do_ocptr[sim_do_depth]);