[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.4 and 1.5

version 1.4, 2009/06/04 14:15:50 version 1.5, 2009/06/04 14:24:49
Line 400 
Line 400 
                         /* Abort sequence and begin with new. */                          /* Abort sequence and begin with new. */
                         input_state(ictx, input_state_escape);                          input_state(ictx, input_state_escape);
                 } else if (ch != 0x18 && ch != 0x1a) {  /* CAN and SUB */                  } else if (ch != 0x18 && ch != 0x1a) {  /* CAN and SUB */
                           /* Abort sequence. */
                           input_state(ictx, input_state_first);
                   } else {
                         /* Handle C0 immediately. */                          /* Handle C0 immediately. */
                         input_handle_c0_control(ch, ictx);                          input_handle_c0_control(ch, ictx);
                 }                  }
Line 465 
Line 468 
                         /* Abort sequence and begin with new. */                          /* Abort sequence and begin with new. */
                         input_state(ictx, input_state_escape);                          input_state(ictx, input_state_escape);
                 } else if (ch != 0x18 && ch != 0x1a) {  /* CAN and SUB */                  } else if (ch != 0x18 && ch != 0x1a) {  /* CAN and SUB */
                           /* Abort sequence. */
                           input_state(ictx, input_state_first);
                   } else  {
                         /* Handle C0 immediately. */                          /* Handle C0 immediately. */
                         input_handle_c0_control(ch, ictx);                          input_handle_c0_control(ch, ictx);
                 }                  }

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5