=================================================================== RCS file: /cvs/mandoc/man.c,v retrieving revision 1.117 retrieving revision 1.118 diff -u -p -r1.117 -r1.118 --- mandoc/man.c 2012/06/12 20:21:04 1.117 +++ mandoc/man.c 2012/07/14 10:47:07 1.118 @@ -1,4 +1,4 @@ -/* $Id: man.c,v 1.117 2012/06/12 20:21:04 kristaps Exp $ */ +/* $Id: man.c,v 1.118 2012/07/14 10:47:07 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * @@ -435,9 +435,10 @@ man_ptext(struct man *m, int line, char *buf, int offs if ('\0' == buf[i]) { /* Allocate a blank entry. */ - if ( ! man_word_alloc(m, line, offs, "")) + if ( ! man_elem_alloc(m, line, offs, MAN_sp)) return(0); - return(man_descope(m, line, offs)); + m->next = MAN_NEXT_SIBLING; + return(1); } /*