=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/mdoc_term.c,v retrieving revision 1.15 retrieving revision 1.16 diff -c -r1.15 -r1.16 *** src/usr.bin/mandoc/mdoc_term.c 2009/06/27 11:49:37 1.15 --- src/usr.bin/mandoc/mdoc_term.c 2009/06/27 11:56:05 1.16 *************** *** 1,4 **** ! /* $Id: mdoc_term.c,v 1.15 2009/06/27 11:49:37 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: mdoc_term.c,v 1.16 2009/06/27 11:56:05 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * *************** *** 786,796 **** } /* ! * Whitespace control. Inset bodies need an initial space. */ switch (type) { case (MDOC_Diag): /* FALLTHROUGH */ case (MDOC_Inset): if (MDOC_BODY == node->type) --- 786,798 ---- } /* ! * Whitespace control. Inset bodies need an initial space, ! * while diagonal bodies need two. */ switch (type) { case (MDOC_Diag): + term_word(p, "\\ "); /* FALLTHROUGH */ case (MDOC_Inset): if (MDOC_BODY == node->type)