[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.40 and 1.41

version 1.40, 2021/08/20 18:59:53 version 1.41, 2021/08/20 19:34:51
Line 117 
Line 117 
         struct client           *tc = cmdq_get_target_client(item);          struct client           *tc = cmdq_get_target_client(item);
         struct tty              *tty = &tc->tty;          struct tty              *tty = &tc->tty;
         struct window           *w;          struct window           *w;
         const char              *size, *errstr, *value;          const char              *size, *errstr;
         u_int                    x, y, adjust;          u_int                    x, y, adjust;
         struct args_value       *av;          struct args_value       *av;
   
Line 187 
Line 187 
                 av = args_first_value(args, 'A');                  av = args_first_value(args, 'A');
                 while (av != NULL) {                  while (av != NULL) {
                         cmd_refresh_client_update_offset(tc, av->value);                          cmd_refresh_client_update_offset(tc, av->value);
                         av = args_next_value(&av);                          av = args_next_value(av);
                 }                  }
                 return (CMD_RETURN_NORMAL);                  return (CMD_RETURN_NORMAL);
         }          }
Line 196 
Line 196 
                         goto not_control_client;                          goto not_control_client;
                 av = args_first_value(args, 'B');                  av = args_first_value(args, 'B');
                 while (av != NULL) {                  while (av != NULL) {
                         cmd_refresh_client_update_subscription(tc, av);                          cmd_refresh_client_update_subscription(tc, av->value);
                         av = args_next_value(av);                          av = args_next_value(av);
                 }                  }
                 return (CMD_RETURN_NORMAL);                  return (CMD_RETURN_NORMAL);

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.41