From 97b00dfb147534b2ac86bacbb4445bdb2a0ecdbb Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 23 May 2017 22:29:24 -0400 Subject: [PATCH] Make output from replays easier to interpret by adding prompts. --- misc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/misc.c b/misc.c index 1ca50d8..680f9ff 100644 --- a/misc.c +++ b/misc.c @@ -894,8 +894,10 @@ long I, VAL; } else { if (logfp) IGNORE(fputs(INLINE+1, logfp)); - else if (!isatty(0)) + else if (!isatty(0)) { + IGNORE(fputs("> ", stdout)); IGNORE(fputs(INLINE+1, stdout)); + } LNLENG=0; for (I=1; I<=sizeof(INLINE) && INLINE[I]!=0; I++) { VAL=INLINE[I]+1; -- 2.31.1