[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.5 and 1.6

version 1.5, 2011/01/04 00:42:47 version 1.6, 2011/09/28 20:11:21
Line 28 
Line 28 
   
 const struct cmd_entry cmd_refresh_client_entry = {  const struct cmd_entry cmd_refresh_client_entry = {
         "refresh-client", "refresh",          "refresh-client", "refresh",
         "t:", 0, 0,          "St:", 0, 0,
         CMD_TARGET_CLIENT_USAGE,          "[-S] " CMD_TARGET_CLIENT_USAGE,
         0,          0,
         NULL,          NULL,
         NULL,          NULL,
Line 45 
Line 45 
         if ((c = cmd_find_client(ctx, args_get(args, 't'))) == NULL)          if ((c = cmd_find_client(ctx, args_get(args, 't'))) == NULL)
                 return (-1);                  return (-1);
   
         server_redraw_client(c);          if (args_has(args, 'S')) {
                   status_update_jobs(c);
                   server_status_client(c);
           } else
                   server_redraw_client(c);
   
         return (0);          return (0);
 }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6