[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.47 and 1.48

version 1.47, 2015/11/12 22:04:37 version 1.48, 2015/11/14 11:45:43
Line 169 
Line 169 
                 return;                  return;
         }          }
         if (key != KEYC_NONE && justkey > 0x7f && justkey < KEYC_BASE) {          if (key != KEYC_NONE && justkey > 0x7f && justkey < KEYC_BASE) {
                 if (utf8_split(justkey, &ud) != 0)                  if (utf8_split(justkey, &ud) != UTF8_DONE)
                         return;                          return;
                 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.47  
changed lines
  Added in v.1.48