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

Diff for /src/usr.bin/tmux/cmd.c between version 1.167 and 1.168

version 1.167, 2021/08/21 08:44:59 version 1.168, 2021/08/21 14:06:17
Line 594 
Line 594 
         TAILQ_INSERT_TAIL(cmdlist->list, cmd, qentry);          TAILQ_INSERT_TAIL(cmdlist->list, cmd, qentry);
 }  }
   
 /* Move all commands from one command list to another */  /* Append all commands from one list to another.  */
   void
   cmd_list_append_all(struct cmd_list *cmdlist, struct cmd_list *from)
   {
           struct cmd      *cmd;
   
           TAILQ_FOREACH(cmd, from->list, qentry)
                   cmd->group = cmdlist->group;
           TAILQ_CONCAT(cmdlist->list, from->list, qentry);
   }
   
   /* Move all commands from one command list to another. */
 void  void
 cmd_list_move(struct cmd_list *cmdlist, struct cmd_list *from)  cmd_list_move(struct cmd_list *cmdlist, struct cmd_list *from)
 {  {

Legend:
Removed from v.1.167  
changed lines
  Added in v.1.168