[BACK]Return to key-string.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/key-string.c between version 1.26 and 1.27

version 1.26, 2015/04/19 21:34:21 version 1.27, 2015/10/26 22:03:04
Line 238 
Line 238 
         }          }
   
         /* Invalid keys are errors. */          /* Invalid keys are errors. */
         if (key == 127 || key > 255)          if (key == 127 || key > 255) {
                 return (NULL);                  snprintf(out, sizeof out, "<INVALID#%04x>", key);
                   return (out);
           }
   
         /* Check for standard or control key. */          /* Check for standard or control key. */
         if (key >= 0 && key <= 32) {          if (key >= 0 && key <= 32) {

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27