[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.109 and 1.110

version 1.109, 2017/02/01 09:55:07 version 1.110, 2017/02/06 13:25:15
Line 871 
Line 871 
   
         buf = EVBUFFER_DATA(evb);          buf = EVBUFFER_DATA(evb);
         len = EVBUFFER_LENGTH(evb);          len = EVBUFFER_LENGTH(evb);
         notify_input(wp, evb);  
         off = 0;          off = 0;
   
           notify_input(wp, evb);
   
         log_debug("%s: %%%u %s, %zu bytes: %.*s", __func__, wp->id,          log_debug("%s: %%%u %s, %zu bytes: %.*s", __func__, wp->id,
             ictx->state->name, len, (int)len, buf);              ictx->state->name, len, (int)len, buf);
   
Line 1218 
Line 1219 
   
         if (ictx->flags & INPUT_DISCARD)          if (ictx->flags & INPUT_DISCARD)
                 return (0);                  return (0);
         if (input_split(ictx) != 0)  
                 return (0);  
         log_debug("%s: '%c' \"%s\" \"%s\"",          log_debug("%s: '%c' \"%s\" \"%s\"",
             __func__, ictx->ch, ictx->interm_buf, ictx->param_buf);              __func__, ictx->ch, ictx->interm_buf, ictx->param_buf);
   
           if (input_split(ictx) != 0)
                   return (0);
   
         entry = bsearch(ictx, input_csi_table, nitems(input_csi_table),          entry = bsearch(ictx, input_csi_table, nitems(input_csi_table),
             sizeof input_csi_table[0], input_table_compare);              sizeof input_csi_table[0], input_table_compare);

Legend:
Removed from v.1.109  
changed lines
  Added in v.1.110