From b83a9d881333255c1539b3f392dc344efa32d674 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Mon, 4 Jul 2011 09:42:38 +0000 Subject: The bufcat() function in -T[x]html was eating one byte off the end of its concatenated string. This for some reason hasn't been found before now... ? Anyway, fixed, and make the IDs created again be correctly prefixed by a letter as per the HTML spec. --- html.c | 1 - 1 file changed, 1 deletion(-) (limited to 'html.c') diff --git a/html.c b/html.c index 170e5361..bd4a18bb 100644 --- a/html.c +++ b/html.c @@ -595,7 +595,6 @@ bufcat(struct html *h, const char *p) h->buflen = strlcat(h->buf, p, BUFSIZ); assert(h->buflen < BUFSIZ); - h->buflen--; } void -- cgit