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

Diff for /src/usr.bin/tmux/server-client.c between version 1.82 and 1.83

version 1.82, 2013/01/15 22:55:29 version 1.83, 2013/01/18 02:10:29
Line 334 
Line 334 
         u_int           t;          u_int           t;
   
         if ((t = options_get_number(&s->options, "assume-paste-time")) == 0)          if ((t = options_get_number(&s->options, "assume-paste-time")) == 0)
                 return 0;                  return (0);
   
         timersub(&s->activity_time, &s->last_activity_time, &tv);          timersub(&s->activity_time, &s->last_activity_time, &tv);
         if (tv.tv_sec == 0 && tv.tv_usec < t * 1000)          if (tv.tv_sec == 0 && tv.tv_usec < t * 1000)
                 return 1;                  return (1);
         return 0;          return (0);
 }  }
   
 /* Handle data key input from client. */  /* Handle data key input from client. */

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.83