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

Diff for /src/usr.bin/tmux/window-copy.c between version 1.153 and 1.154

version 1.153, 2016/10/03 22:52:11 version 1.154, 2016/10/09 07:30:28
Line 1288 
Line 1288 
                         xoff = size = xsnprintf(hdr, limit,                          xoff = size = xsnprintf(hdr, limit,
                             "Repeat: %d", data->numprefix);                              "Repeat: %d", data->numprefix);
                 } else {                  } else {
                         xoff = size = xsnprintf(hdr, limit,                          /* We don't care about truncation. */
                           xoff = size = snprintf(hdr, limit,
                             "%s: %s", data->inputprompt, data->inputstr);                              "%s: %s", data->inputprompt, data->inputstr);
                 }                  }
                 screen_write_cursormove(ctx, 0, last);                  screen_write_cursormove(ctx, 0, last);

Legend:
Removed from v.1.153  
changed lines
  Added in v.1.154