aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_action.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-06-12 12:52:50 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-06-12 12:52:50 +0000
commitb3cf0892b65aa9f16b8201298caa411c6b786b31 (patch)
tree5f8d27dd54a5d229039e887ed8d5999212b8ab44 /mdoc_action.c
parent91deb3ada9798193fdc1eea30c75fde0f2a96203 (diff)
downloadmandoc-b3cf0892b65aa9f16b8201298caa411c6b786b31.tar.gz
mandoc-b3cf0892b65aa9f16b8201298caa411c6b786b31.tar.zst
mandoc-b3cf0892b65aa9f16b8201298caa411c6b786b31.zip
Lint fixes (no effect).
Versioning up.
Diffstat (limited to 'mdoc_action.c')
-rw-r--r--mdoc_action.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mdoc_action.c b/mdoc_action.c
index 23da04f8..bfc93da7 100644
--- a/mdoc_action.c
+++ b/mdoc_action.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_action.c,v 1.10 2009/06/12 09:18:00 kristaps Exp $ */
+/* $Id: mdoc_action.c,v 1.11 2009/06/12 12:52:51 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -538,7 +538,8 @@ post_bl_tagwidth(struct mdoc *m)
* width if a macro.
*/
- if ((n = m->last->body->child)) {
+ n = m->last->body->child;
+ if (n) {
assert(MDOC_BLOCK == n->type);
assert(MDOC_It == n->tok);
n = n->head->child;