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

Diff for /src/usr.bin/tmux/cmd-refresh-client.c between version 1.14 and 1.15

version 1.14, 2015/05/27 13:28:04 version 1.15, 2015/09/14 10:25:52
Line 65 
Line 65 
                 }                  }
                 if (tty_set_size(&c->tty, w, h))                  if (tty_set_size(&c->tty, w, h))
                         recalculate_sizes();                          recalculate_sizes();
         } else if (args_has(args, 'S'))          } else if (args_has(args, 'S')) {
                   c->flags |= CLIENT_STATUSFORCE;
                 server_status_client(c);                  server_status_client(c);
         else          } else {
                   c->flags |= CLIENT_STATUSFORCE;
                 server_redraw_client(c);                  server_redraw_client(c);
           }
   
         return (CMD_RETURN_NORMAL);          return (CMD_RETURN_NORMAL);
 }  }

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15