diff options
Diffstat (limited to 'terminal.c')
-rw-r--r-- | terminal.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -76,10 +76,14 @@ ascii_alloc(void) int -terminal_run(void *arg, const struct mdoc *mdoc) +terminal_run(void *arg, const struct man *man, + const struct mdoc *mdoc) { struct termp *p; + if (NULL == mdoc) + return(1); + p = (struct termp *)arg; if (NULL == p->symtab) |