nlsplit

split natural language text in chunks at reasonable language boundaries
git clone https://a3nm.net/git/nlsplit/
Log | Files | Refs | README

commit 6e691b2400272e5c72d403124118a6c32f923f12
parent 20444efabe6dfe60dd0e961c9d84c271e3ff6446
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Wed,  7 Sep 2011 00:17:59 +0200

bugfix

Diffstat:
nlsplit.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nlsplit.c b/nlsplit.c @@ -30,7 +30,7 @@ int push2(point *points, int hd, int tl, int *otl, int size, float confidence, l points[tl].confidence = confidence; tl = tl + 1 % size; } else { - points[*tl].confidence = confidence; + points[tl].confidence = confidence; } *otl = tl; return tl;