diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2010-05-24 14:35:59 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2010-05-24 14:35:59 +0000 |
commit | b86a18b480ba0d85edf47d0d1cfaa71fe43bad52 (patch) | |
tree | 4747ca4e2b1fe17cc9db0a1ca520b016583bfd48 /mdoc_term.c | |
parent | 18701cd4bf71f389d17b73212c1b63de81ac9ccb (diff) | |
download | mandoc-b86a18b480ba0d85edf47d0d1cfaa71fe43bad52.tar.gz |
fix an obvious typo in print_bvspace():
rev. 1.125 broke vertical spacing in .Bl -column
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index aed7bd1e..82723204 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -613,7 +613,7 @@ print_bvspace(struct termp *p, /* A `-column' does not assert vspace within the list. */ - if (MDOC_Bl == bl->tok && LIST_diag == bl->data.list) + if (MDOC_Bl == bl->tok && LIST_column == bl->data.list) if (n->prev && MDOC_It == n->prev->tok) return; |