]> git.cameronkatri.com Git - mandoc.git/blobdiff - html.c
Enable generation of the desired delim/basic output with groff(1).
[mandoc.git] / html.c
diff --git a/html.c b/html.c
index c9e5c2b4a56f5f77606dd31822f3c08fa73e8097..50fa78ce0cc5b2e30b9cae689dc5f4fe7f964b54 100644 (file)
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/*     $Id: html.c,v 1.260 2019/09/03 18:08:02 schwarze Exp $ */
+/*     $Id: html.c,v 1.261 2019/09/05 13:35:04 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011-2015, 2017-2019 Ingo Schwarze <schwarze@openbsd.org>
@@ -968,15 +968,12 @@ print_indent(struct html *h)
 {
        size_t   i;
 
-       if (h->col)
+       if (h->col || h->noindent)
                return;
 
-       if (h->noindent == 0) {
-               h->col = h->indent * 2;
-               for (i = 0; i < h->col; i++)
-                       putchar(' ');
-       }
-       h->flags &= ~HTML_NOSPACE;
+       h->col = h->indent * 2;
+       for (i = 0; i < h->col; i++)
+               putchar(' ');
 }
 
 /*