From 89309755f1c6859a800d95c4d5ea2d83d991d4b2 Mon Sep 17 00:00:00 2001 From: Michael Hampton Date: Wed, 30 Jan 2008 18:40:02 +0000 Subject: [PATCH] Text client: allow message quoting of lines over 1000 --- citadel/messages.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/citadel/messages.c b/citadel/messages.c index ee067bd5a..2da6b4efb 100644 --- a/citadel/messages.c +++ b/citadel/messages.c @@ -1276,13 +1276,13 @@ void process_quote(void) line = 0; fgets(buf, 128, qfile); while (fgets(buf, 128, qfile) != NULL) { - scr_printf("%2d %s", ++line, buf); + scr_printf("%3d %s", ++line, buf); } - scr_printf("Begin quoting at [ 1] : "); - ctdl_getline(buf, 3); + scr_printf("Begin quoting at [1] : "); + ctdl_getline(buf, 4); qstart = (buf[0] == 0) ? (1) : atoi(buf); scr_printf(" End quoting at [%d] : ", line); - ctdl_getline(buf, 3); + ctdl_getline(buf, 4); qend = (buf[0] == 0) ? (line) : atoi(buf); rewind(qfile); line = 0; -- 2.39.2