[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.61 and 1.62

version 1.61, 2017/06/12 07:04:24 version 1.62, 2017/06/28 11:36:39
Line 177 
Line 177 
          * If this is a normal 7-bit key, just send it, with a leading escape           * If this is a normal 7-bit key, just send it, with a leading escape
          * 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_XTERM|KEYC_ESCAPE));
         if (justkey <= 0x7f) {          if (justkey <= 0x7f) {
                 if (key & KEYC_ESCAPE)                  if (key & KEYC_ESCAPE)
                         bufferevent_write(wp->event, "\033", 1);                          bufferevent_write(wp->event, "\033", 1);

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.62