=================================================================== RCS file: /cvs/mandoc/mdoc_term.c,v retrieving revision 1.198 retrieving revision 1.199 diff -u -p -r1.198 -r1.199 --- mandoc/mdoc_term.c 2010/12/15 23:44:02 1.198 +++ mandoc/mdoc_term.c 2010/12/16 17:14:48 1.199 @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.198 2010/12/15 23:44:02 kristaps Exp $ */ +/* $Id: mdoc_term.c,v 1.199 2010/12/16 17:14:48 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * Copyright (c) 2010 Ingo Schwarze @@ -1116,10 +1116,10 @@ termp_an_post(DECL_ARGS) return; } - if (AUTH_split == n->data.An.auth) { + if (AUTH_split == n->data.An->auth) { p->flags &= ~TERMP_NOSPLIT; p->flags |= TERMP_SPLIT; - } else if (AUTH_nosplit == n->data.An.auth) { + } else if (AUTH_nosplit == n->data.An->auth) { p->flags &= ~TERMP_SPLIT; p->flags |= TERMP_NOSPLIT; }