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

Diff for /src/usr.bin/tmux/input.c between version 1.1 and 1.2

version 1.1, 2009/06/01 22:58:49 version 1.2, 2009/06/03 19:33:04
Line 475 
Line 475 
                 return;                  return;
         }          }
   
         if (ch >= 0x20 && ch != 0x7f) {          if (ch >= 0x20) {
                 if (input_add_string(ictx, ch) != 0)                  if (input_add_string(ictx, ch) != 0)
                         input_state(ictx, input_state_first);                          input_state(ictx, input_state_first);
                 return;                  return;

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2