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

Diff for /src/usr.bin/tmux/status.c between version 1.25 and 1.26

version 1.25, 2009/08/13 23:44:18 version 1.26, 2009/08/18 07:23:43
Line 854 
Line 854 
                         c->flags |= CLIENT_STATUS;                          c->flags |= CLIENT_STATUS;
                 }                  }
                 break;                  break;
           case MODEKEYEDIT_DELETELINE:
                   *c->prompt_buffer = '\0';
                   c->prompt_index = 0;
                   c->flags |= CLIENT_STATUS;
                   break;
         case MODEKEYEDIT_DELETETOENDOFLINE:          case MODEKEYEDIT_DELETETOENDOFLINE:
                 if (c->prompt_index < size) {                  if (c->prompt_index < size) {
                         c->prompt_buffer[c->prompt_index] = '\0';                          c->prompt_buffer[c->prompt_index] = '\0';

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26