]> git.cameronkatri.com Git - mandoc.git/commitdiff
bugfix: make the static class buffer long enough
authorIngo Schwarze <schwarze@openbsd.org>
Tue, 25 Dec 2018 00:06:25 +0000 (00:06 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Tue, 25 Dec 2018 00:06:25 +0000 (00:06 +0000)
for .Bl -bullet -compact -offset indent

mdoc_html.c

index ada20b0608ed081d4e292a64cd83c0111635fb04..a3c05f087093a6ec78c7fdc330909082db662a16 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_html.c,v 1.319 2018/12/22 19:49:13 schwarze Exp $ */
+/*     $Id: mdoc_html.c,v 1.320 2018/12/25 00:06:25 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -796,7 +796,7 @@ mdoc_it_pre(MDOC_ARGS)
 static int
 mdoc_bl_pre(MDOC_ARGS)
 {
-       char             cattr[28];
+       char             cattr[32];
        struct mdoc_bl  *bl;
        enum htmltag     elemtype;