=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/mdoc_man.c,v retrieving revision 1.83 retrieving revision 1.84 diff -c -r1.83 -r1.84 *** src/usr.bin/mandoc/mdoc_man.c 2015/02/06 03:31:11 1.83 --- src/usr.bin/mandoc/mdoc_man.c 2015/02/11 14:14:53 1.84 *************** *** 1,4 **** ! /* $OpenBSD: mdoc_man.c,v 1.83 2015/02/06 03:31:11 schwarze Exp $ */ /* * Copyright (c) 2011-2015 Ingo Schwarze * --- 1,4 ---- ! /* $OpenBSD: mdoc_man.c,v 1.84 2015/02/11 14:14:53 schwarze Exp $ */ /* * Copyright (c) 2011-2015 Ingo Schwarze * *************** *** 1138,1146 **** n->child->end != ENDBODY_NOT) print_word("\\&"); else if (n->end != ENDBODY_NOT ? n->child != NULL : ! n->parent->head->child != NULL && ! (n->parent->body->child != NULL || ! n->parent->tail->child != NULL)) outflags &= ~(MMAN_spc | MMAN_nl); return(1); } --- 1138,1145 ---- n->child->end != ENDBODY_NOT) print_word("\\&"); else if (n->end != ENDBODY_NOT ? n->child != NULL : ! n->parent->head->child != NULL && (n->child != NULL || ! (n->parent->tail != NULL && n->parent->tail->child != NULL))) outflags &= ~(MMAN_spc | MMAN_nl); return(1); }