X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Ftermsbr.c;h=e7ba35ae2a3f0bc8cde31e7e64c87d9cb3c38d30;hp=3c45eb28521765a65c238ff77a4d3a8cd0485731;hb=b7764c4a6b71d37918a97594d866258f154017ca;hpb=39e87a75b5c2d3572ec72e717720b44af291e88a diff --git a/uip/termsbr.c b/uip/termsbr.c index 3c45eb2..e7ba35a 100644 --- a/uip/termsbr.c +++ b/uip/termsbr.c @@ -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; -}