[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.63 and 1.64

version 1.63, 2018/10/18 08:38:01 version 1.64, 2019/07/09 14:03:12
Line 173 
Line 173 
                 return;                  return;
         }          }
   
           /* Literal keys go as themselves (can't be more than eight bits). */
           if (key & KEYC_LITERAL) {
                   ud.data[0] = (u_char)key;
                   bufferevent_write(wp->event, &ud.data[0], 1);
                   return;
           }
   
         /*          /*
          * 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.

Legend:
Removed from v.1.63  
changed lines
  Added in v.1.64