[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.7 and 1.8

version 1.7, 2009/10/04 08:50:05 version 1.8, 2009/10/06 07:32:26
Line 121 
Line 121 
                 if (ptr[1] == '\0') {                  if (ptr[1] == '\0') {
                         if (ptr[0] == 32)                          if (ptr[0] == 32)
                                 return (0);                                  return (0);
                           if (ptr[0] == 63)
                                   return (KEYC_BSPACE);
                         if (ptr[0] >= 64 && ptr[0] <= 95)                          if (ptr[0] >= 64 && ptr[0] <= 95)
                                 return (ptr[0] - 64);                                  return (ptr[0] - 64);
                         if (ptr[0] >= 97 && ptr[0] <= 122)                          if (ptr[0] >= 97 && ptr[0] <= 122)

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8