[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.81 and 1.82

version 1.81, 2011/11/15 23:34:12 version 1.82, 2011/12/01 20:42:31
Line 1156 
Line 1156 
                 /* Find the separator at the end of the word. */                  /* Find the separator at the end of the word. */
                 while (c->prompt_index != size) {                  while (c->prompt_index != size) {
                         c->prompt_index++;                          c->prompt_index++;
                         if (strchr(wsep, c->prompt_buffer[c->prompt_index])) {                          if (strchr(wsep, c->prompt_buffer[c->prompt_index]))
                                 /* Go back to the word. */  
                                 c->prompt_index--;  
                                 break;                                  break;
                         }  
                 }                  }
   
                 c->flags |= CLIENT_STATUS;                  c->flags |= CLIENT_STATUS;

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.82