[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.32 and 1.33

version 1.32, 2015/06/04 11:43:51 version 1.33, 2015/10/27 15:58:42
Line 222 
Line 222 
 screen_redraw_screen(struct client *c, int draw_panes, int draw_status,  screen_redraw_screen(struct client *c, int draw_panes, int draw_status,
     int draw_borders)      int draw_borders)
 {  {
         struct options  *oo = &c->session->options;          struct options  *oo = c->session->options;
         struct tty      *tty = &c->tty;          struct tty      *tty = &c->tty;
         u_int            top;          u_int            top;
         int              status, spos;          int              status, spos;
Line 276 
Line 276 
 {  {
         struct session          *s = c->session;          struct session          *s = c->session;
         struct window           *w = s->curw->window;          struct window           *w = s->curw->window;
         struct options          *oo = &w->options;          struct options          *oo = w->options;
         struct tty              *tty = &c->tty;          struct tty              *tty = &c->tty;
         struct window_pane      *wp;          struct window_pane      *wp;
         struct grid_cell         m_active_gc, active_gc, m_other_gc, other_gc;          struct grid_cell         m_active_gc, active_gc, m_other_gc, other_gc;
Line 392 
Line 392 
 {  {
         struct tty              *tty = &c->tty;          struct tty              *tty = &c->tty;
         struct session          *s = c->session;          struct session          *s = c->session;
         struct options          *oo = &s->options;          struct options          *oo = s->options;
         struct window           *w = wp->window;          struct window           *w = wp->window;
         struct grid_cell         gc;          struct grid_cell         gc;
         u_int                    idx, px, py, i, j, xoff, yoff;          u_int                    idx, px, py, i, j, xoff, yoff;

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33