[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.34 and 1.35

version 1.34, 2011/01/15 00:16:00 version 1.35, 2011/01/28 20:39:22
Line 812 
Line 812 
         *ictx->param_buf = '\0';          *ictx->param_buf = '\0';
         ictx->param_len = 0;          ictx->param_len = 0;
   
           *ictx->input_buf = '\0';
           ictx->input_len = 0;
   
         ictx->flags &= ~INPUT_DISCARD;          ictx->flags &= ~INPUT_DISCARD;
 }  }
   
Line 1394 
Line 1397 
 {  {
         log_debug("%s", __func__);          log_debug("%s", __func__);
   
         ictx->input_len = 0;          input_clear(ictx);
 }  }
   
 /* DCS terminator (ST) received. */  /* DCS terminator (ST) received. */
Line 1410 
Line 1413 
 {  {
         log_debug("%s", __func__);          log_debug("%s", __func__);
   
         ictx->input_len = 0;          input_clear(ictx);
 }  }
   
 /* OSC terminator (ST) received. */  /* OSC terminator (ST) received. */
Line 1436 
Line 1439 
 {  {
         log_debug("%s", __func__);          log_debug("%s", __func__);
   
         ictx->input_len = 0;          input_clear(ictx);
 }  }
   
 /* APC terminator (ST) received. */  /* APC terminator (ST) received. */
Line 1457 
Line 1460 
 {  {
         log_debug("%s", __func__);          log_debug("%s", __func__);
   
         ictx->input_len = 0;          input_clear(ictx);
 }  }
   
 /* Rename terminator (ST) received. */  /* Rename terminator (ST) received. */

Legend:
Removed from v.1.34  
changed lines
  Added in v.1.35