version 1.85, 2010/06/07 20:57:09 |
version 1.87, 2010/06/12 10:09:19 |
Line 143 static const char * const mandocerrs[MANDOCERR_MAX] = |
|
Line 143 static const char * const mandocerrs[MANDOCERR_MAX] = |
|
"macro requires argument(s)", |
"macro requires argument(s)", |
"no title in document", |
"no title in document", |
"missing list type", |
"missing list type", |
|
"missing display type", |
"line argument(s) will be lost", |
"line argument(s) will be lost", |
"body argument(s) will be lost", |
"body argument(s) will be lost", |
"column syntax is inconsistent", |
"column syntax is inconsistent", |
"missing font type", |
"missing font type", |
"missing display type", |
|
"displays may not be nested", |
"displays may not be nested", |
|
"unsupported display type", |
"no scope to rewind: syntax violated", |
"no scope to rewind: syntax violated", |
"scope broken, syntax violated", |
"scope broken, syntax violated", |
"line scope broken, syntax violated", |
"line scope broken, syntax violated", |
Line 591 fdesc(struct curparse *curp) |
|
Line 592 fdesc(struct curparse *curp) |
|
break; |
break; |
case (OUTT_ASCII): |
case (OUTT_ASCII): |
curp->outdata = ascii_alloc(curp->outopts); |
curp->outdata = ascii_alloc(curp->outopts); |
|
curp->outfree = ascii_free; |
break; |
break; |
case (OUTT_PS): |
case (OUTT_PS): |
curp->outdata = ps_alloc(); |
curp->outdata = ps_alloc(); |
|
curp->outfree = ps_free; |
break; |
break; |
default: |
default: |
break; |
break; |
Line 616 fdesc(struct curparse *curp) |
|
Line 619 fdesc(struct curparse *curp) |
|
case (OUTT_PS): |
case (OUTT_PS): |
curp->outman = terminal_man; |
curp->outman = terminal_man; |
curp->outmdoc = terminal_mdoc; |
curp->outmdoc = terminal_mdoc; |
curp->outfree = terminal_free; |
|
break; |
break; |
default: |
default: |
break; |
break; |