From 3381330a9ac5b7bf0bb812fb4fa8fde0f14d769d Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Thu, 8 Nov 2001 00:58:15 +0000 Subject: [PATCH] 2.47 introduced another bug. I should go to bed now. --- handler.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/handler.c b/handler.c index 10059727..be9e23f6 100644 --- a/handler.c +++ b/handler.c @@ -948,9 +948,10 @@ static int flowed_visual_strlen (char *l, int i) int j; for (j = 0; *l; l++) { - j++; if (*l == '\t') j += 8 - ((i + j) % 8); + else + j++; } return j; -- 2.40.0