diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-04-07 07:49:38 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-04-07 07:49:38 +0000 |
commit | e50bd5403bffd1dcb18a4d7951661de06ec86efa (patch) | |
tree | 5b18d73f2700fc7305b53e5e245b4d8a6bbc756e | |
parent | f6dd6a8975af8d5bf3e1397a69e955666d4ee3c3 (diff) | |
download | mandoc-e50bd5403bffd1dcb18a4d7951661de06ec86efa.tar.gz |
Bug in printing of reserved words with form \*[xxx] fixed (found by Joerg Sonnenberger).
-rw-r--r-- | mdoc_html.c | 1 | ||||
-rw-r--r-- | out.c | 14 |
2 files changed, 9 insertions, 6 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 90d22e1f..802b969e 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1388,6 +1388,7 @@ mdoc_bd_pre(MDOC_ARGS) } /* FIXME: -centered, etc. formatting. */ + /* FIXME: does not respect -offset ??? */ if (MDOC_BLOCK == n->type) { bufcat_su(h, "margin-left", &su); @@ -197,12 +197,12 @@ int a2roffdeco(enum roffdeco *d, const char **word, size_t *sz) { - int j, type, term, lim; + int j, offs, term, lim; const char *wp, *sp; *d = DECO_NONE; wp = *word; - type = 1; + offs = 0; switch (*wp) { case ('\0'): @@ -236,7 +236,7 @@ a2roffdeco(enum roffdeco *d, return(4); case ('['): - type = 0; + offs = 1; break; default: @@ -344,13 +344,15 @@ a2roffdeco(enum roffdeco *d, } *word = ++wp; + for (j = 0; *wp && ']' != *wp; wp++, j++) /* Loop... */ ; if ('\0' == *wp) - return(j + 1); + return(j + 1 + offs); - *d = type ? DECO_SPECIAL : DECO_RESERVED; + *d = offs ? DECO_RESERVED : DECO_SPECIAL; *sz = (size_t)j; - return (j + 2); + + return (j + 2 + offs); } |