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

Diff for /mandoc/mdoc.c between version 1.41 and 1.42

version 1.41, 2009/01/20 13:44:05 version 1.42, 2009/01/20 13:49:36
Line 318  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
Line 318  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
                         return(1);                          return(1);
   
         i = 1;          i = 1;
         while (buf[i] && ! isspace(buf[i]) && i < (int)sizeof(tmp))          while (buf[i] && ! isspace((int)buf[i]) && i < (int)sizeof(tmp))
                 i++;                  i++;
   
         if (i == (int)sizeof(tmp)) {          if (i == (int)sizeof(tmp)) {
Line 339  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
Line 339  mdoc_parseln(struct mdoc *mdoc, int line, char *buf)
                 return(mdoc_perr(mdoc, line, 1, "unknown macro"));                  return(mdoc_perr(mdoc, line, 1, "unknown macro"));
         }          }
   
         while (buf[i] && isspace(buf[i]))          while (buf[i] && isspace((int)buf[i]))
                 i++;                  i++;
   
         if ( ! mdoc_macro(mdoc, c, line, 1, &i, buf)) {          if ( ! mdoc_macro(mdoc, c, line, 1, &i, buf)) {

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42

CVSweb