From c4c5143b4e9a8255a6bbcafc7e81d09166e34298 Mon Sep 17 00:00:00 2001 From: Gene Cumm Date: Mon, 5 Jul 2010 07:22:28 -0400 Subject: [PATCH] rosh: more remove unneeded check --- com32/rosh/rosh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/com32/rosh/rosh.c b/com32/rosh/rosh.c index ff8c9ac..801fbf5 100644 --- a/com32/rosh/rosh.c +++ b/com32/rosh/rosh.c @@ -38,7 +38,7 @@ #define APP_NAME "rosh" #define APP_AUTHOR "Gene Cumm" #define APP_YEAR "2010" -#define APP_VER "beta-b067" +#define APP_VER "beta-b068" void rosh_version(void) { @@ -806,7 +806,7 @@ void rosh_more_buf(char *buf, int buflen, int rows, int cols, char *scrbuf) /* If this will not push too much, use it */ /* but if it's the first line, use it */ /* //HERE: We should probably snip the line off */ - if ((i < numln) || ((i == elpl) && (i >= numln))) + if ((i < numln) || (i == elpl)) bufeol = bufeol2 + 1; } } -- 2.7.4