From d352d5370ac6ee67491525dda37cf9db2e9ac53b Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Tue, 25 Dec 2018 00:06:25 +0000 Subject: bugfix: make the static class buffer long enough for .Bl -bullet -compact -offset indent --- mdoc_html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mdoc_html.c b/mdoc_html.c index ada20b06..a3c05f08 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -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 * Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze @@ -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; -- cgit v1.2.3