diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-21 13:47:40 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-21 13:47:40 +0000 |
commit | 84d661915150fb271e81f789e1ba20d8809e4be9 (patch) | |
tree | 88dfc432c6ee89449dc6e69d331b4004c77b8ada /html.c | |
parent | aa4258e259a6d13ee38d6b17b19399da51506f43 (diff) | |
download | mandoc-84d661915150fb271e81f789e1ba20d8809e4be9.tar.gz |
Fix in outopts processing.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -424,7 +424,7 @@ html_alloc(char *outopts) return(NULL); } - while (*outopts) + while (outopts && *outopts) switch (getsubopt(&outopts, toks, &v)) { case (0): h->style = v; |