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

Diff for /src/usr.bin/vis/foldit.c between version 1.6 and 1.7

version 1.6, 2013/11/12 13:54:51 version 1.7, 2013/11/12 22:51:18
Line 52 
Line 52 
                         col = 0;                          col = 0;
                         break;                          break;
                 case '\t':                  case '\t':
                         col = col + 8 &~ 07;                          col = (col + 8) & ~07;
                         break;                          break;
                 case '\b':                  case '\b':
                         col = col ? col - 1 : 0;                          col = col ? col - 1 : 0;

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7