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

Diff for /mandoc/Attic/argv.c between version 1.33 and 1.34

version 1.33, 2009/02/27 09:39:40 version 1.34, 2009/02/28 12:16:02
Line 294  args(struct mdoc *mdoc, int line, 
Line 294  args(struct mdoc *mdoc, int line, 
                         if ( ! mdoc_iscdelim(buf[i]))                          if ( ! mdoc_iscdelim(buf[i]))
                                 break;                                  break;
                         i++;                          i++;
                           /* There must be at least one space... */
                           if (0 == buf[i] || ! isspace((int)buf[i]))
                                   break;
                           i++;
                         while (buf[i] && isspace((int)buf[i]))                          while (buf[i] && isspace((int)buf[i]))
                                 i++;                                  i++;
                 }                  }

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34

CVSweb