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

Diff for /mandoc/mdoc.c between version 1.200 and 1.201

version 1.200, 2012/07/18 10:39:19 version 1.201, 2012/07/18 11:11:12
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 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 646  mdoc_node_delete(struct mdoc *m, struct mdoc_node *p)
Line 646  mdoc_node_delete(struct mdoc *m, struct mdoc_node *p)
   
         mdoc_node_unlink(m, p);          mdoc_node_unlink(m, p);
         mdoc_node_free(p);          mdoc_node_free(p);
   }
   
   int
   mdoc_node_relink(struct mdoc *m, struct mdoc_node *p)
   {
   
           mdoc_node_unlink(m, p);
           return(node_append(m, p));
 }  }
   
 #if 0  #if 0

Legend:
Removed from v.1.200  
changed lines
  Added in v.1.201

CVSweb