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

Diff for /src/usr.bin/tmux/input.c between version 1.138 and 1.139

version 1.138, 2018/10/18 08:04:14 version 1.139, 2018/11/19 13:35:41
Line 767 
Line 767 
         ictx->input_buf = xmalloc(INPUT_BUF_START);          ictx->input_buf = xmalloc(INPUT_BUF_START);
   
         ictx->since_ground = evbuffer_new();          ictx->since_ground = evbuffer_new();
           if (ictx->since_ground == NULL)
                   fatalx("out of memory");
   
         evtimer_set(&ictx->timer, input_timer_callback, ictx);          evtimer_set(&ictx->timer, input_timer_callback, ictx);
   

Legend:
Removed from v.1.138  
changed lines
  Added in v.1.139