[BACK]Return to window-buffer.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/window-buffer.c between version 1.28 and 1.29

version 1.28, 2020/05/16 15:24:28 version 1.29, 2020/05/16 15:35:19
Line 233 
Line 233 
                 while (end != pdata + psize && *end != '\n')                  while (end != pdata + psize && *end != '\n')
                         end++;                          end++;
                 buf = xreallocarray(buf, 4, end - start + 1);                  buf = xreallocarray(buf, 4, end - start + 1);
                 utf8_strvis(buf, start, end - start, VIS_OCTAL|VIS_TAB);                  utf8_strvis(buf, start, end - start, VIS_OCTAL|VIS_CSTYLE|VIS_TAB);
                 if (*buf != '\0') {                  if (*buf != '\0') {
                         screen_write_cursormove(ctx, cx, cy + i, 0);                          screen_write_cursormove(ctx, cx, cy + i, 0);
                         screen_write_nputs(ctx, sx, &grid_default_cell, "%s",                          screen_write_nputs(ctx, sx, &grid_default_cell, "%s",

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29