[BACK]Return to roff.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/roff.c between version 1.215 and 1.216

version 1.215, 2018/11/26 17:44:29 version 1.216, 2018/12/04 02:53:45
Line 1065 
Line 1065 
 }  }
   
 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.215  
changed lines
  Added in v.1.216