[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.48 and 1.49

version 1.48, 2015/11/14 11:45:43 version 1.49, 2015/11/16 22:57:51
Line 161 
Line 161 
          * if necessary. If it is a UTF-8 key, split it and send it.           * if necessary. If it is a UTF-8 key, split it and send it.
          */           */
         justkey = (key & ~KEYC_ESCAPE);          justkey = (key & ~KEYC_ESCAPE);
         if (key != KEYC_NONE && justkey < 0x7f) {          if (key != KEYC_NONE && justkey <= 0x7f) {
                 if (key & KEYC_ESCAPE)                  if (key & KEYC_ESCAPE)
                         bufferevent_write(wp->event, "\033", 1);                          bufferevent_write(wp->event, "\033", 1);
                 ud.data[0] = justkey;                  ud.data[0] = justkey;

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.49