summaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-04-04 15:41:05 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-04-04 15:41:05 +0000
commit6a8b10b9828abaa30a401704794769bfe61d4e5d (patch)
treeaf2db447df7f0997569e63c03613fae9a9e2b928 /mdoc_html.c
parentdff60581ee6a3878f319d127c7e83b61c30ac622 (diff)
downloadmandoc-6a8b10b9828abaa30a401704794769bfe61d4e5d.tar.gz
mandoc-6a8b10b9828abaa30a401704794769bfe61d4e5d.tar.zst
mandoc-6a8b10b9828abaa30a401704794769bfe61d4e5d.zip
Clean-up in -T[x]html: remove some unnecessary assignments to local
variables.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c44
1 files changed, 21 insertions, 23 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index ed99dea0..efe023ef 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.156 2011/04/04 15:33:03 kristaps Exp $ */
+/* $Id: mdoc_html.c,v 1.157 2011/04/04 15:41:05 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -751,8 +751,7 @@ mdoc_nm_pre(MDOC_ARGS)
static int
mdoc_xr_pre(MDOC_ARGS)
{
- struct htmlpair tag[2];
- const struct mdoc_node *nn;
+ struct htmlpair tag[2];
if (NULL == n->child)
return(0);
@@ -768,16 +767,16 @@ mdoc_xr_pre(MDOC_ARGS)
} else
print_otag(h, TAG_A, 1, tag);
- nn = n->child;
- print_text(h, nn->string);
+ n = n->child;
+ print_text(h, n->string);
- if (NULL == (nn = nn->next))
+ if (NULL == (n = n->next))
return(0);
h->flags |= HTML_NOSPACE;
print_text(h, "(");
h->flags |= HTML_NOSPACE;
- print_text(h, nn->string);
+ print_text(h, n->string);
h->flags |= HTML_NOSPACE;
print_text(h, ")");
return(0);
@@ -1168,14 +1167,13 @@ mdoc_d1_pre(MDOC_ARGS)
static int
mdoc_sx_pre(MDOC_ARGS)
{
- struct htmlpair tag[2];
- const struct mdoc_node *nn;
- char buf[BUFSIZ];
+ struct htmlpair tag[2];
+ char buf[BUFSIZ];
strlcpy(buf, "#", BUFSIZ);
- for (nn = n->child; nn; nn = nn->next) {
- html_idcat(buf, nn->string, BUFSIZ);
- if (nn->next)
+ for (n = n->child; n; n = n->next) {
+ html_idcat(buf, n->string, BUFSIZ);
+ if (n->next)
html_idcat(buf, " ", BUFSIZ);
}
@@ -1451,13 +1449,13 @@ mdoc_ft_pre(MDOC_ARGS)
static int
mdoc_fn_pre(MDOC_ARGS)
{
- struct tag *t;
- struct htmlpair tag[2];
- const struct mdoc_node *nn;
- char nbuf[BUFSIZ];
- const char *sp, *ep;
- int sz, i;
+ struct tag *t;
+ struct htmlpair tag[2];
+ char nbuf[BUFSIZ];
+ const char *sp, *ep;
+ int sz, i, pretty;
+ pretty = MDOC_SYNPRETTY & n->flags;
synopsis_pre(h, n);
/* Split apart into type and name. */
@@ -1515,14 +1513,14 @@ mdoc_fn_pre(MDOC_ARGS)
bufcat_style(h, "white-space", "nowrap");
PAIR_STYLE_INIT(&tag[1], h);
- for (nn = n->child->next; nn; nn = nn->next) {
+ for (n = n->child->next; n; n = n->next) {
i = 1;
if (MDOC_SYNPRETTY & n->flags)
i = 2;
t = print_otag(h, TAG_I, i, tag);
- print_text(h, nn->string);
+ print_text(h, n->string);
print_tagq(h, t);
- if (nn->next) {
+ if (n->next) {
h->flags |= HTML_NOSPACE;
print_text(h, ",");
}
@@ -1531,7 +1529,7 @@ mdoc_fn_pre(MDOC_ARGS)
h->flags |= HTML_NOSPACE;
print_text(h, ")");
- if (MDOC_SYNPRETTY & n->flags) {
+ if (pretty) {
h->flags |= HTML_NOSPACE;
print_text(h, ";");
}