=================================================================== RCS file: /cvs/mandoc/man_html.c,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- mandoc/man_html.c 2014/09/27 09:05:57 1.99 +++ mandoc/man_html.c 2014/09/27 09:13:39 1.100 @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.99 2014/09/27 09:05:57 kristaps Exp $ */ +/* $Id: man_html.c,v 1.100 2014/09/27 09:13:39 kristaps Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2013, 2014 Ingo Schwarze @@ -331,8 +331,7 @@ man_root_pre(MAN_ARGS) print_stagq(h, tt); PAIR_CLASS_INIT(&tag[0], "head-rtitle"); - PAIR_INIT(&tag[1], ATTR_ALIGN, "right"); - print_otag(h, TAG_TD, 2, tag); + print_otag(h, TAG_TD, 1, tag); print_text(h, title); print_tagq(h, t); free(title); @@ -360,8 +359,7 @@ man_root_post(MAN_ARGS) print_stagq(h, tt); PAIR_CLASS_INIT(&tag[0], "foot-os"); - PAIR_INIT(&tag[1], ATTR_ALIGN, "right"); - print_otag(h, TAG_TD, 2, tag); + print_otag(h, TAG_TD, 1, tag); if (man->source) print_text(h, man->source);