=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/mdoc_term.c,v retrieving revision 1.56 retrieving revision 1.57 diff -u -r1.56 -r1.57 --- src/usr.bin/mandoc/mdoc_term.c 2009/10/19 09:41:22 1.56 +++ src/usr.bin/mandoc/mdoc_term.c 2009/10/19 13:29:56 1.57 @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.56 2009/10/19 09:41:22 schwarze Exp $ */ +/* $Id: mdoc_term.c,v 1.57 2009/10/19 13:29:56 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -1159,6 +1159,8 @@ termp_rs_pre(DECL_ARGS) { + if (SEC_SEE_ALSO != node->sec) + return(1); if (MDOC_BLOCK == node->type && node->prev) term_vspace(p); return(1); @@ -1419,7 +1421,8 @@ termp_lb_post(DECL_ARGS) { - term_newln(p); + if (SEC_LIBRARY == node->sec) + term_newln(p); }