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

Diff for /mandoc/roff.c between version 1.343 and 1.344

version 1.343, 2018/11/26 17:44:34 version 1.344, 2018/12/04 02:53:51
Line 1067  roff_node_unlink(struct roff_man *man, struct roff_nod
Line 1067  roff_node_unlink(struct roff_man *man, struct roff_nod
 }  }
   
 void  void
   roff_node_relink(struct roff_man *man, struct roff_node *n)
   {
           roff_node_unlink(man, n);
           n->prev = n->next = NULL;
           roff_node_append(man, n);
   }
   
   void
 roff_node_free(struct roff_node *n)  roff_node_free(struct roff_node *n)
 {  {
   

Legend:
Removed from v.1.343  
changed lines
  Added in v.1.344

CVSweb