From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (kristaps@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id p649gd7q030628 for ; Mon, 4 Jul 2011 05:42:39 -0400 (EDT) Received: (from kristaps@localhost) by krisdoz.my.domain (8.14.3/8.14.3/Submit) id p649gdPS018892; Mon, 4 Jul 2011 05:42:39 -0400 (EDT) Date: Mon, 4 Jul 2011 05:42:39 -0400 (EDT) Message-Id: <201107040942.p649gdPS018892@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: kristaps@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: The bufcat() function in -T[x]html was eating one byte off the X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- 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. Modified Files: -------------- mdocml: html.c mdoc_html.c Revision Data ------------- Index: html.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/html.c,v retrieving revision 1.147 retrieving revision 1.148 diff -Lhtml.c -Lhtml.c -u -p -r1.147 -r1.148 --- html.c +++ 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 Index: mdoc_html.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_html.c,v retrieving revision 1.171 retrieving revision 1.172 diff -Lmdoc_html.c -Lmdoc_html.c -u -p -r1.171 -r1.172 --- mdoc_html.c +++ mdoc_html.c @@ -610,6 +610,7 @@ mdoc_sh_pre(MDOC_ARGS) return(1); bufinit(h); + bufcat(h, "x"); for (n = n->child; n; n = n->next) { bufcat_id(h, n->string); if (n->next) @@ -636,6 +637,7 @@ mdoc_ss_pre(MDOC_ARGS) return(1); bufinit(h); + bufcat(h, "x"); for (n = n->child; n; n = n->next) { bufcat_id(h, n->string); if (n->next) -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv