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

Diff for /mandoc/man_term.c between version 1.225 and 1.226

version 1.225, 2018/12/31 11:01:37 version 1.226, 2019/01/05 00:36:50
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) 2010-2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010-2015, 2017-2019 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 419  pre_HP(DECL_ARGS)
Line 419  pre_HP(DECL_ARGS)
                 return 0;                  return 0;
         }          }
   
         if ((n->flags & NODE_NOFILL) == 0) {          if (n->child == NULL)
                   return 0;
   
           if ((n->child->flags & NODE_NOFILL) == 0) {
                 p->flags |= TERMP_NOBREAK | TERMP_BRIND;                  p->flags |= TERMP_NOBREAK | TERMP_BRIND;
                 p->trailspace = 2;                  p->trailspace = 2;
         }          }

Legend:
Removed from v.1.225  
changed lines
  Added in v.1.226

CVSweb