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

Diff for /mandoc/roff.c between version 1.69 and 1.70

version 1.69, 2010/05/15 18:48:32 version 1.70, 2010/05/15 20:51:40
Line 76  const struct roffmac  roffs[ROFF_MAX] = {
Line 76  const struct roffmac  roffs[ROFF_MAX] = {
         { ".", NULL, roff_new_close },          { ".", NULL, roff_new_close },
 };  };
   
 static  void             roff_alloc1(struct roff *);  
 static  void             roff_free1(struct roff *);  static  void             roff_free1(struct roff *);
 static  enum rofft       roff_hash_find(const char *);  static  enum rofft       roff_hash_find(const char *);
 static  int              roffnode_push(struct roff *,  static  int              roffnode_push(struct roff *,
Line 153  roff_free1(struct roff *r)
Line 152  roff_free1(struct roff *r)
 }  }
   
   
 static void  
 roff_alloc1(struct roff *r)  
 {  
   
         /* Do nothing for now. */  
 }  
   
   
 void  void
 roff_reset(struct roff *r)  roff_reset(struct roff *r)
 {  {
   
         roff_free1(r);          roff_free1(r);
         roff_alloc1(r);  
 }  }
   
   

Legend:
Removed from v.1.69  
changed lines
  Added in v.1.70

CVSweb