nmh-workers
[Top] [All Lists]

[Nmh-workers] [PATCH] mhshow: suppress pause actions if stdout isn't a tty

2012-02-11 11:41:39
previously, "mhshow | cat" would both print a "Press return" prompt
to, and attempt to read from, its piped output fd.
---
 uip/mhshowsbr.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/uip/mhshowsbr.c b/uip/mhshowsbr.c
index c60acb9..5abd67d 100644
--- a/uip/mhshowsbr.c
+++ b/uip/mhshowsbr.c
@@ -533,11 +533,11 @@ show_content_aux2 (CT ct, int serial, int alternate, char 
*cracked, char *buffer
        else
            list_switch (ct, -1, 1, 0, 0);
 
-       if (xpause && SOprintf ("Press <return> to show content..."))
-           printf ("Press <return> to show content...");
-
-       if (xpause) {
+       if (xpause && isatty (fileno (stdout))) {
            int intr;
+
+           if (SOprintf ("Press <return> to show content..."))
+               printf ("Press <return> to show content...");
            SIGNAL_HANDLER istat;
 
            istat = SIGNAL (SIGINT, intrser);
-- 
1.7.4.1



=---------------------
 paul fox, pgf(_at_)foxharp(_dot_)boston(_dot_)ma(_dot_)us (arlington, ma, 
where it's 32.9 degrees)

_______________________________________________
Nmh-workers mailing list
Nmh-workers(_at_)nongnu(_dot_)org
https://lists.nongnu.org/mailman/listinfo/nmh-workers

<Prev in Thread] Current Thread [Next in Thread>