[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.15 and 1.16

version 1.15, 2015/09/14 10:25:52 version 1.16, 2015/12/13 14:32:38
Line 30 
Line 30 
         "refresh-client", "refresh",          "refresh-client", "refresh",
         "C:St:", 0, 0,          "C:St:", 0, 0,
         "[-S] [-C size] " CMD_TARGET_CLIENT_USAGE,          "[-S] [-C size] " CMD_TARGET_CLIENT_USAGE,
         0,          CMD_CLIENT_T,
         cmd_refresh_client_exec          cmd_refresh_client_exec
 };  };
   
Line 38 
Line 38 
 cmd_refresh_client_exec(struct cmd *self, struct cmd_q *cmdq)  cmd_refresh_client_exec(struct cmd *self, struct cmd_q *cmdq)
 {  {
         struct args     *args = self->args;          struct args     *args = self->args;
         struct client   *c;          struct client   *c = cmdq->state.c;
         const char      *size;          const char      *size;
         u_int            w, h;          u_int            w, h;
   
         if ((c = cmd_find_client(cmdq, args_get(args, 't'), 0)) == NULL)  
                 return (CMD_RETURN_ERROR);  
   
         if (args_has(args, 'C')) {          if (args_has(args, 'C')) {
                 if ((size = args_get(args, 'C')) == NULL) {                  if ((size = args_get(args, 'C')) == NULL) {

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