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

Diff for /mandoc/mdoc_macro.c between version 1.116 and 1.117

version 1.116, 2012/05/27 17:39:28 version 1.117, 2012/07/18 16:20:43
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 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010, 2012 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 1358  blk_part_imp(MACRO_PROT_ARGS)
Line 1358  blk_part_imp(MACRO_PROT_ARGS)
   
         if (n && ! rew_sub(MDOC_BLOCK, m, tok, line, ppos))          if (n && ! rew_sub(MDOC_BLOCK, m, tok, line, ppos))
                 return(0);                  return(0);
   
           /* Move trailing .Ns out of scope. */
   
           for (n = body->child; n && n->next; n = n->next)
                   /* Do nothing. */ ;
           if (n && MDOC_Ns == n->tok)
                   mdoc_node_relink(m, n);
   
         return(1);          return(1);
 }  }

Legend:
Removed from v.1.116  
changed lines
  Added in v.1.117

CVSweb