From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (mandoc.bsd.lv [local]) by mandoc.bsd.lv (OpenSMTPD) with ESMTPA id 36cd4110 for ; Sun, 1 Sep 2019 10:12:50 -0500 (EST) Date: Sun, 1 Sep 2019 10:12:50 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: delete the TAG_IDIV crutch, which is no longer used X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-ID: <862a8fa8974500eb@mandoc.bsd.lv> Log Message: ----------- delete the TAG_IDIV crutch, which is no longer used Modified Files: -------------- mandoc: html.c html.h mdoc_html.c Revision Data ------------- Index: html.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/html.c,v retrieving revision 1.257 retrieving revision 1.258 diff -Lhtml.c -Lhtml.c -u -p -r1.257 -r1.258 --- html.c +++ html.c @@ -65,7 +65,6 @@ static const struct htmldata htmltags[TA {"title", HTML_NLAROUND}, {"body", HTML_NLALL}, {"div", HTML_NLAROUND}, - {"div", 0}, {"section", HTML_NLALL}, {"table", HTML_NLALL | HTML_INDENT}, {"tr", HTML_NLALL | HTML_INDENT}, Index: mdoc_html.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/mdoc_html.c,v retrieving revision 1.328 retrieving revision 1.329 diff -Lmdoc_html.c -Lmdoc_html.c -u -p -r1.328 -r1.329 --- mdoc_html.c +++ mdoc_html.c @@ -1700,7 +1700,7 @@ mdoc_quote_pre(MDOC_ARGS) /* * Give up on semantic markup for now. * We cannot use TAG_SPAN because .Oo may contain blocks. - * We cannot use TAG_IDIV because we might be in a + * We cannot use TAG_DIV because we might be in a * phrasing context (like .Dl or .Pp); we cannot * close out a .Pp at this point either because * that would break the line. Index: html.h =================================================================== RCS file: /home/cvs/mandoc/mandoc/html.h,v retrieving revision 1.104 retrieving revision 1.105 diff -Lhtml.h -Lhtml.h -u -p -r1.104 -r1.105 --- html.h +++ html.h @@ -25,7 +25,6 @@ enum htmltag { TAG_TITLE, TAG_BODY, TAG_DIV, - TAG_IDIV, TAG_SECTION, TAG_TABLE, TAG_TR, -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv