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

Diff for /src/usr.bin/tmux/cmd-queue.c between version 1.36 and 1.37

version 1.36, 2016/04/29 14:05:24 version 1.37, 2016/09/28 14:40:07
Line 80 
Line 80 
                 /* nothing */;                  /* nothing */;
         else if (c->session == NULL || (c->flags & CLIENT_CONTROL)) {          else if (c->session == NULL || (c->flags & CLIENT_CONTROL)) {
                 if (~c->flags & CLIENT_UTF8) {                  if (~c->flags & CLIENT_UTF8) {
                         vasprintf(&tmp, fmt, ap);                          xvasprintf(&tmp, fmt, ap);
                         msg = utf8_sanitize(tmp);                          msg = utf8_sanitize(tmp);
                         free(tmp);                          free(tmp);
                         evbuffer_add(c->stdout_data, msg, strlen(msg));                          evbuffer_add(c->stdout_data, msg, strlen(msg));

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37