From 3b56f0e3bfb3555b58f85b9bc0830203357c14cd Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 26 Feb 2013 19:51:26 +0900 Subject: [PATCH] Advance src with next_line. This fixes the double counting of the \n at the end of the chunk separator line. --- libs/util/segtext.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/util/segtext.c b/libs/util/segtext.c index 01268a9f0..9ae516b6f 100644 --- a/libs/util/segtext.c +++ b/libs/util/segtext.c @@ -157,7 +157,8 @@ Segtext_new (const char *source_string) *src++ = 0; // terminate the previous chunk *chunk = new_chunk (); (*chunk)->tag = find_tag (src); - (*chunk)->text = next_line (src, &line); + src = next_line (src, &line); + (*chunk)->text = src; (*chunk)->start_line = line; // If tags are duplicated, the first one takes precedence if ((*chunk)->tag && !Hash_Find (text->tab, (*chunk)->tag))