]> git.cameronkatri.com Git - mandoc.git/blobdiff - term.c
Make the generated man(7) code more portable by using .PD
[mandoc.git] / term.c
diff --git a/term.c b/term.c
index 15f8812facc7b741d5b8d79027328d2e482718d5..6229031285e3721b3daecb5c93c22abb29bbe83e 100644 (file)
--- a/term.c
+++ b/term.c
@@ -1,4 +1,4 @@
-/*     $Id: term.c,v 1.205 2012/07/16 21:30:42 schwarze Exp $ */
+/*     $Id: term.c,v 1.206 2012/11/16 17:16:55 schwarze Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010, 2011, 2012 Ingo Schwarze <schwarze@openbsd.org>
@@ -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);
 }