From 6c8b3ba49c51760959b4a79eeab51af6d3c58565 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Sun, 29 Jan 2017 14:02:41 +0000 Subject: eliminate one useless struct and one level of indirection; no functional change --- man_html.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'man_html.c') diff --git a/man_html.c b/man_html.c index 804859f8..0a3f5790 100644 --- a/man_html.c +++ b/man_html.c @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.130 2017/01/26 18:28:18 schwarze Exp $ */ +/* $Id: man_html.c,v 1.131 2017/01/29 14:02:42 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze @@ -197,7 +197,7 @@ print_man_node(MAN_ARGS) struct tag *t; child = 1; - t = h->tags.head; + t = h->tag; if (t == mh->nofill) t = t->next; @@ -240,7 +240,7 @@ print_man_node(MAN_ARGS) */ if (h->tblt) { print_tblclose(h); - t = h->tags.head; + t = h->tag; } if (mans[n->tok].pre) child = (*mans[n->tok].pre)(man, n, mh, h); -- cgit v1.2.3