]> git.marmaro.de Git - mmh/commitdiff
Removed the check for hardcopy terminals. There won't be any today.
authormarkus schnalke <meillo@marmaro.de>
Fri, 10 Feb 2012 14:42:19 +0000 (15:42 +0100)
committermarkus schnalke <meillo@marmaro.de>
Fri, 10 Feb 2012 14:42:19 +0000 (15:42 +0100)
If you though do have one, then set moreproc to cat.

uip/mhl.c
uip/termsbr.c

index 017d2f787ed22fed0a576b730272b7dc60af91f7..b1410ad1a4fad201d2e4f1c508cc70ad67d19138 100644 (file)
--- a/uip/mhl.c
+++ b/uip/mhl.c
@@ -269,7 +269,6 @@ void clear_screen(void);  /* from termsbr.c */
 int SOprintf(char *, ...);  /* from termsbr.c */
 int sc_width(void);  /* from termsbr.c */
 int sc_length(void);  /* from termsbr.c */
-int sc_hardcopy(void);  /* from termsbr.c */
 
 
 int
@@ -410,7 +409,7 @@ main(int argc, char **argv)
                folder = getenv("mhfolder");
 
        if (isatty(fileno(stdout))) {
-               if (!sc_hardcopy() && moreproc && *moreproc != '\0') {
+               if (moreproc && *moreproc) {
                        if (mhl_action) {
                                SIGNAL(SIGINT, SIG_IGN);
                                SIGNAL2(SIGQUIT, quitser);
index 3c45eb28521765a65c238ff77a4d3a8cd0485731..e7ba35ae2a3f0bc8cde31e7e64c87d9cb3c38d30 100644 (file)
@@ -60,7 +60,6 @@ static long speedcode;
 static int initLI = 0;
 static int initCO = 0;
 
-static int HC = 0;       /* are we on a hardcopy terminal? */
 static int LI = 40;      /* number of lines */
 static int CO = 80;      /* number of colums */
 static char *CL = NULL;  /* termcap string to clear screen */
@@ -121,8 +120,6 @@ read_termcap(void)
 # endif
 #endif
 
-       HC = tgetflag("hc");
-
        if (!initCO && (CO = tgetnum("co")) <= 0)
                CO = 80;
        if (!initLI && (LI = tgetnum("li")) <= 0)
@@ -214,14 +211,3 @@ SOprintf(char *fmt, ...)
 
        return OK;
 }
-
-/*
-** Is this a hardcopy terminal?
-*/
-
-int
-sc_hardcopy(void)
-{
-       read_termcap();
-       return HC;
-}