[BACK]Return to fields.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / sort

Diff for /src/usr.bin/sort/Attic/fields.c between version 1.8 and 1.9

version 1.8, 2003/06/10 22:20:51 version 1.9, 2003/09/25 02:06:40
Line 51 
Line 51 
   
 #define NEXTCOL(pos) {                                          \  #define NEXTCOL(pos) {                                          \
         if (!SEP_FLAG)                                          \          if (!SEP_FLAG)                                          \
                 while (BLANK & l_d_mask[*(++pos)]);             \                  while (pos < lineend && BLANK & l_d_mask[*(++pos)]);            \
         while (!((FLD_D | REC_D_F) & l_d_mask[*++pos]));        \          while (pos < lineend && !((FLD_D | REC_D_F) & l_d_mask[*++pos]));       \
 }  }
   
 extern u_char *enterfield(u_char *, u_char *, struct field *, int);  extern u_char *enterfield(u_char *, u_char *, struct field *, int);

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9