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

Diff for /src/usr.bin/tmux/screen-redraw.c between version 1.12 and 1.13

version 1.12, 2009/10/12 09:29:58 version 1.13, 2009/10/28 08:52:36
Line 257 
Line 257 
         if (wp->sx < len * 6 || wp->sy < 5) {          if (wp->sx < len * 6 || wp->sy < 5) {
                 tty_cursor(tty, xoff + px - len / 2, yoff + py);                  tty_cursor(tty, xoff + px - len / 2, yoff + py);
                 memcpy(&gc, &grid_default_cell, sizeof gc);                  memcpy(&gc, &grid_default_cell, sizeof gc);
                   gc.data = '_'; /* not space */
                 colour_set_fg(&gc, colour);                  colour_set_fg(&gc, colour);
                 tty_attributes(tty, &gc);                  tty_attributes(tty, &gc);
                 tty_puts(tty, buf);                  tty_puts(tty, buf);
Line 267 
Line 268 
         py -= 2;          py -= 2;
   
         memcpy(&gc, &grid_default_cell, sizeof gc);          memcpy(&gc, &grid_default_cell, sizeof gc);
           gc.data = '_'; /* not space */
         colour_set_bg(&gc, colour);          colour_set_bg(&gc, colour);
         tty_attributes(tty, &gc);          tty_attributes(tty, &gc);
         for (ptr = buf; *ptr != '\0'; ptr++) {          for (ptr = buf; *ptr != '\0'; ptr++) {

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13