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

Diff for /mandoc/eqn.c between version 1.30 and 1.31

version 1.30, 2011/07/22 14:59:02 version 1.31, 2011/07/23 09:47:25
Line 648  again:
Line 648  again:
                 if ('{' == *start || '}' == *start)                  if ('{' == *start || '}' == *start)
                         ssz = 1;                          ssz = 1;
                 else                  else
                         ssz = strcspn(start + 1, " ~\"{}\t") + 1;                          ssz = strcspn(start + 1, " ^~\"{}\t") + 1;
                 next = start + (int)ssz;                  next = start + (int)ssz;
                 if ('\0' == *next)                  if ('\0' == *next)
                         next = NULL;                          next = NULL;
Line 662  again:
Line 662  again:
                         ep->cur++;                          ep->cur++;
                 while (' ' == ep->data[(int)ep->cur] ||                  while (' ' == ep->data[(int)ep->cur] ||
                                 '\t' == ep->data[(int)ep->cur] ||                                  '\t' == ep->data[(int)ep->cur] ||
                                   '^' == ep->data[(int)ep->cur] ||
                                 '~' == ep->data[(int)ep->cur])                                  '~' == ep->data[(int)ep->cur])
                         ep->cur++;                          ep->cur++;
         } else {          } else {

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31

CVSweb