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

Diff for /mandoc/mdoc_term.c between version 1.258 and 1.259

version 1.258, 2013/12/25 21:24:12 version 1.259, 2014/02/16 12:33:39
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
  * Copyright (c) 2013 Franco Fichtner <franco@lastsummer.de>   * Copyright (c) 2013 Franco Fichtner <franco@lastsummer.de>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
Line 873  termp_it_pre(DECL_ARGS)
Line 873  termp_it_pre(DECL_ARGS)
                 assert(width);                  assert(width);
                 if (MDOC_HEAD == n->type)                  if (MDOC_HEAD == n->type)
                         p->rmargin = p->offset + width;                          p->rmargin = p->offset + width;
                 else                  else {
                         p->offset += width;                          p->offset += width;
                           if (p->rmargin < p->offset)
                                   p->rmargin = p->offset;
                   }
                 break;                  break;
         case (LIST_column):          case (LIST_column):
                 assert(width);                  assert(width);

Legend:
Removed from v.1.258  
changed lines
  Added in v.1.259

CVSweb