=================================================================== RCS file: /cvs/mandoc/term.c,v retrieving revision 1.205 retrieving revision 1.207 diff -u -p -r1.205 -r1.207 --- mandoc/term.c 2012/07/16 21:30:42 1.205 +++ mandoc/term.c 2013/05/29 15:17:52 1.207 @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.205 2012/07/16 21:30:42 schwarze Exp $ */ +/* $Id: term.c,v 1.207 2013/05/29 15:17:52 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2011, 2012 Ingo Schwarze @@ -376,7 +376,7 @@ void term_fontpopq(struct termp *p, const void *key) { - while (p->fonti >= 0 && key != &p->fontq[p->fonti]) + while (p->fonti >= 0 && key < (void *)(p->fontq + p->fonti)) p->fonti--; assert(p->fonti >= 0); } @@ -406,14 +406,14 @@ term_word(struct termp *p, const char *word) if ( ! (TERMP_NOSPACE & p->flags)) { if ( ! (TERMP_KEEP & p->flags)) { - if (TERMP_PREKEEP & p->flags) - p->flags |= TERMP_KEEP; bufferc(p, ' '); if (TERMP_SENTENCE & p->flags) bufferc(p, ' '); } else bufferc(p, ASCII_NBRSP); } + if (TERMP_PREKEEP & p->flags) + p->flags |= TERMP_KEEP; if ( ! (p->flags & TERMP_NONOSPACE)) p->flags &= ~TERMP_NOSPACE;