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

Diff for /src/usr.bin/tmux/tty-keys.c between version 1.113 and 1.114

version 1.113, 2019/05/07 11:24:03 version 1.114, 2019/05/09 14:09:32
Line 893 
Line 893 
         m->x = x;          m->x = x;
         m->ly = tty->mouse_last_y;          m->ly = tty->mouse_last_y;
         m->y = y;          m->y = y;
         m->lb = m->b;          m->lb = tty->mouse_last_b;
         m->b = b;          m->b = b;
         m->sgr_type = sgr_type;          m->sgr_type = sgr_type;
         m->sgr_b = sgr_b;          m->sgr_b = sgr_b;
Line 901 
Line 901 
         /* Update last mouse state. */          /* Update last mouse state. */
         tty->mouse_last_x = x;          tty->mouse_last_x = x;
         tty->mouse_last_y = y;          tty->mouse_last_y = y;
           tty->mouse_last_b = b;
   
         return (0);          return (0);
 }  }

Legend:
Removed from v.1.113  
changed lines
  Added in v.1.114