From 2210ea7e3b0b2839ac7fb49c18d2731cb9e94e01 Mon Sep 17 00:00:00 2001
From: "arg@mig29" <unknown>
Date: Sun, 26 Nov 2006 15:43:16 +0100
Subject: applied yet another proposal of Manuel

---
 main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/main.c b/main.c
index f196df7..934bea4 100644
--- a/main.c
+++ b/main.c
@@ -284,8 +284,8 @@ main(int argc, char *argv[]) {
 				readin = False;
 				break;
 			default:
-				stext[r - (stext[r - 1] == '\n' ? 1 : 0)] = '\0';
-				for(p = stext + strlen(stext) - 1; p > stext && *p != '\n'; --p);
+				for(stext[r] = '\0', p = stext + strlen(stext) - 1; p >= stext && *p == '\n'; *p-- = '\0');
+				for(p = stext + strlen(stext) - 1; p >= stext && *p != '\n'; --p);
 				if(p > stext)
 					strncpy(stext, p + 1, sizeof stext);
 			}
-- 
cgit v1.2.3