[BACK]Return to man_html.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/man_html.c between version 1.90 and 1.91

version 1.90, 2013/10/17 20:54:58 version 1.91, 2014/03/08 15:50:41
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 553  man_IP_pre(MAN_ARGS)
Line 553  man_IP_pre(MAN_ARGS)
   
         /* For TP, only print next-line header elements. */          /* For TP, only print next-line header elements. */
   
         if (MAN_TP == n->tok)          if (MAN_TP == n->tok) {
                 for (nn = n->child; nn; nn = nn->next)                  nn = n->child;
                         if (nn->line > n->line)                  while (NULL != nn && 0 == (MAN_LINE & nn->flags))
                                 print_man_node(man, nn, mh, h);                          nn = nn->next;
                   while (NULL != nn) {
                           print_man_node(man, nn, mh, h);
                           nn = nn->next;
                   }
           }
   
         return(0);          return(0);
 }  }

Legend:
Removed from v.1.90  
changed lines
  Added in v.1.91

CVSweb