[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.345

version 1.343, 2018/11/26 17:44:34 version 1.345, 2018/12/12 21:54:35
Line 28 
Line 28 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
 #include "mandoc.h"  
 #include "mandoc_aux.h"  #include "mandoc_aux.h"
 #include "mandoc_ohash.h"  #include "mandoc_ohash.h"
   #include "mandoc.h"
 #include "roff.h"  #include "roff.h"
   #include "tbl.h"
 #include "libmandoc.h"  #include "libmandoc.h"
 #include "roff_int.h"  #include "roff_int.h"
 #include "libroff.h"  #include "libroff.h"
Line 1064  roff_node_unlink(struct roff_man *man, struct roff_nod
Line 1065  roff_node_unlink(struct roff_man *man, struct roff_nod
         }          }
         if (man->first == n)          if (man->first == n)
                 man->first = NULL;                  man->first = NULL;
   }
   
   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  void

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

CVSweb