[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.21 and 1.22

version 1.21, 2011/10/23 10:19:26 version 1.22, 2012/01/21 08:40:09
Line 188 
Line 188 
   
         *out = '\0';          *out = '\0';
   
           /* Handle no key. */
           if (key == KEYC_NONE)
                   return ("none");
   
         /*          /*
          * Special case: display C-@ as C-Space. Could do this below in           * Special case: display C-@ as C-Space. Could do this below in
          * the (key >= 0 && key <= 32), but this way we let it be found           * the (key >= 0 && key <= 32), but this way we let it be found

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22