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

Diff for /src/usr.bin/mg/basic.c between version 1.53 and 1.54

version 1.53, 2023/04/17 09:49:04 version 1.54, 2023/04/21 13:39:36
Line 277 
Line 277 
         for (i = 0; i < llength(dlp); i++) {          for (i = 0; i < llength(dlp); i++) {
                 c = lgetc(dlp, i);                  c = lgetc(dlp, i);
                 if (c == '\t') {                  if (c == '\t') {
                         col |= 0x07;                          col = ntabstop(col, curbp->b_tabw);
                         col++;  
                 } else if (ISCTRL(c) != FALSE) {                  } else if (ISCTRL(c) != FALSE) {
                         col += 2;                          col += 2;
                 } else if (isprint(c))                  } else if (isprint(c))

Legend:
Removed from v.1.53  
changed lines
  Added in v.1.54