=================================================================== RCS file: /cvs/mandoc/term_ascii.c,v retrieving revision 1.31 retrieving revision 1.33 diff -u -p -r1.31 -r1.33 --- mandoc/term_ascii.c 2014/08/16 19:00:01 1.31 +++ mandoc/term_ascii.c 2014/09/03 05:22:45 1.33 @@ -1,4 +1,4 @@ -/* $Id: term_ascii.c,v 1.31 2014/08/16 19:00:01 schwarze Exp $ */ +/* $Id: term_ascii.c,v 1.33 2014/09/03 05:22:45 schwarze Exp $ */ /* * Copyright (c) 2010, 2011 Kristaps Dzonsons * Copyright (c) 2014 Ingo Schwarze @@ -58,7 +58,7 @@ static size_t locale_width(const struct termp *, in static struct termp * ascii_init(enum termenc enc, char *outopts) { - const char *toks[4]; + const char *toks[5]; char *v; struct termp *p; @@ -97,7 +97,8 @@ ascii_init(enum termenc enc, char *outopts) toks[0] = "indent"; toks[1] = "width"; toks[2] = "mdoc"; - toks[3] = NULL; + toks[3] = "synopsis"; + toks[4] = NULL; while (outopts && *outopts) switch (getsubopt(&outopts, UNCONST(toks), &v)) { @@ -115,6 +116,9 @@ ascii_init(enum termenc enc, char *outopts) p->mdocstyle = 1; p->defindent = 5; break; + case 3: + p->synopsisonly = 1; + break; default: break; } @@ -253,7 +257,7 @@ ascii_hspan(const struct termp *p, const struct roffsu case SCALE_EM: r = su->scale; break; - case SCALE_MAX: + default: abort(); /* NOTREACHED */ }