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

Diff for /src/usr.bin/tmux/format.c between version 1.26 and 1.27

version 1.26, 2013/07/05 15:27:14 version 1.27, 2013/10/10 11:47:11
Line 346 
Line 346 
         format_add(ft, "client_cwd", "%s", c->cwd);          format_add(ft, "client_cwd", "%s", c->cwd);
         format_add(ft, "client_height", "%u", c->tty.sy);          format_add(ft, "client_height", "%u", c->tty.sy);
         format_add(ft, "client_width", "%u", c->tty.sx);          format_add(ft, "client_width", "%u", c->tty.sx);
         format_add(ft, "client_tty", "%s", c->tty.path);          if (c->tty.path != NULL)
         format_add(ft, "client_termname", "%s", c->tty.termname);                  format_add(ft, "client_tty", "%s", c->tty.path);
           if (c->tty.termname != NULL)
                   format_add(ft, "client_termname", "%s", c->tty.termname);
   
         t = c->creation_time.tv_sec;          t = c->creation_time.tv_sec;
         format_add(ft, "client_created", "%lld", (long long) t);          format_add(ft, "client_created", "%lld", (long long) t);

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