[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.33 and 1.34

version 1.33, 2013/05/07 11:00:16 version 1.34, 2014/03/31 21:42:45
Line 143 
Line 143 
         char                           *out;          char                           *out;
         u_char                          ch;          u_char                          ch;
   
         log_debug2("writing key 0x%x", key);          log_debug("writing key 0x%x", key);
   
         /*          /*
          * 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
Line 186 
Line 186 
                         break;                          break;
         }          }
         if (i == nitems(input_keys)) {          if (i == nitems(input_keys)) {
                 log_debug2("key 0x%x missing", key);                  log_debug("key 0x%x missing", key);
                 return;                  return;
         }          }
         dlen = strlen(ike->data);          dlen = strlen(ike->data);
         log_debug2("found key 0x%x: \"%s\"", key, ike->data);          log_debug("found key 0x%x: \"%s\"", key, ike->data);
   
         /* Prefix a \033 for escape. */          /* Prefix a \033 for escape. */
         if (key & KEYC_ESCAPE)          if (key & KEYC_ESCAPE)

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34