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

Diff for /src/usr.bin/tmux/input-keys.c between version 1.43 and 1.44

version 1.43, 2015/04/21 15:21:41 version 1.44, 2015/10/26 17:17:06
Line 145 
Line 145 
         char                           *out;          char                           *out;
         u_char                          ch;          u_char                          ch;
   
         log_debug("writing key 0x%x (%s)", key, key_string_lookup_key(key));          log_debug("writing key 0x%x (%s) to %%%u", key,
               key_string_lookup_key(key), wp->id);
   
         /* If this is a mouse key, pass off to mouse function. */          /* If this is a mouse key, pass off to mouse function. */
         if (KEYC_IS_MOUSE(key)) {          if (KEYC_IS_MOUSE(key)) {
Line 251 
Line 252 
                 buf[len++] = x + 33;                  buf[len++] = x + 33;
                 buf[len++] = y + 33;                  buf[len++] = y + 33;
         }          }
         log_debug("writing mouse %.*s", (int)len, buf);          log_debug("writing mouse %.*s to %%%u", (int)len, buf, wp->id);
         bufferevent_write(wp->event, buf, len);          bufferevent_write(wp->event, buf, len);
 }  }

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44