diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-11-30 18:53:11 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-11-30 18:53:11 +0000 |
commit | 5e7604c4190905586a39ebd4e1638f83e25b46b5 (patch) | |
tree | 117dd1fbd0da56b76fb07658205ca65e7ef5e12b /roff.c | |
parent | 4bbdbe91830ef70f8e2412f6f13baa347956208b (diff) | |
download | mandoc-5e7604c4190905586a39ebd4e1638f83e25b46b5.tar.gz |
Small error fixed.
Diffstat (limited to 'roff.c')
-rw-r--r-- | roff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1022,7 +1022,7 @@ roff_layout(ROFFCALL_ARGS) assert(i > 0); if ( ! roffispunct(argv[--i])) - return(1); + return((*tree->cb.roffout)(tree->arg, tok)); while (i >= 0 && roffispunct(argv[i])) i--; |