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

Diff for /texi2mdoc/util.c between version 1.4 and 1.5

version 1.4, 2015/02/21 17:00:33 version 1.5, 2015/02/21 21:49:18
Line 252  void
Line 252  void
 texivspace(struct texi *p)  texivspace(struct texi *p)
 {  {
   
         if (p->seenvs)          if (p->seenvs || TEXILIST_TABLE == p->list)
                 return;                  return;
         teximacro(p, "Pp");          teximacro(p, "Pp");
         p->seenvs = 1;          p->seenvs = 1;
Line 777  parsefile(struct texi *p, const char *fname, int parse
Line 777  parsefile(struct texi *p, const char *fname, int parse
         struct stat      st;          struct stat      st;
         size_t           i;          size_t           i;
   
         assert(p->filepos < 64);          if (64 == p->filepos)
                   texiabort(p, "too many open files");
         f = &p->files[p->filepos];          f = &p->files[p->filepos];
         memset(f, 0, sizeof(struct texifile));          memset(f, 0, sizeof(struct texifile));
   

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

CVSweb