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

Diff for /mandoc/Attic/dummy.c between version 1.6 and 1.7

version 1.6, 2008/11/25 16:49:57 version 1.7, 2008/11/26 16:50:34
Line 42  static char  dbg_line[72];
Line 42  static char  dbg_line[72];
   
 struct  md_dummy {  struct  md_dummy {
         struct rofftree *tree;          struct rofftree *tree;
           struct roffcb    cb;
 };  };
   
 static void  static void
Line 160  md_init_dummy(const struct md_args *args,
Line 161  md_init_dummy(const struct md_args *args,
                 return(NULL);                  return(NULL);
         }          }
   
         p->tree = roff_alloc(args, mbuf, rbuf,          p->cb.roffhead = NULL;
                         md_dummy_text_in, md_dummy_text_out,          p->cb.rofftail = NULL;
                         md_dummy_blk_in, md_dummy_blk_out);          p->cb.roffin = md_dummy_text_in;
           p->cb.roffout = md_dummy_text_out;
           p->cb.roffblkin = md_dummy_blk_in;
           p->cb.roffblkout = md_dummy_blk_out;
   
           p->tree = roff_alloc(args, mbuf, rbuf, &p->cb);
   
         if (NULL == p->tree) {          if (NULL == p->tree) {
                 free(p);                  free(p);

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

CVSweb