diff options
author | Thomas Adam <thomas@xteddy.org> | 2021-09-09 16:01:09 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2021-09-09 16:01:09 +0100 |
commit | 732288c489f73766af321fe500e9f933e065b2a1 (patch) | |
tree | 76696a2982d843b7060d6235eac6ba26d2e58c89 /arguments.c | |
parent | cf5e1bb80a0900d87c4969ca03501753da892050 (diff) | |
parent | 34312fd6ee8992ce8d13ec63b074466d5f624acc (diff) | |
download | rtmux-732288c489f73766af321fe500e9f933e065b2a1.tar.gz rtmux-732288c489f73766af321fe500e9f933e065b2a1.tar.bz2 rtmux-732288c489f73766af321fe500e9f933e065b2a1.zip |
Merge branch 'obsd-master' into master
Diffstat (limited to 'arguments.c')
-rw-r--r-- | arguments.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arguments.c b/arguments.c index de3b14bf..ad3d699d 100644 --- a/arguments.c +++ b/arguments.c @@ -651,13 +651,14 @@ args_string(struct args *args, u_int idx) /* Make a command now. */ struct cmd_list * -args_make_commands_now(struct cmd *self, struct cmdq_item *item, u_int idx) +args_make_commands_now(struct cmd *self, struct cmdq_item *item, u_int idx, + int expand) { struct args_command_state *state; char *error; struct cmd_list *cmdlist; - state = args_make_commands_prepare(self, item, idx, NULL, 0, 0); + state = args_make_commands_prepare(self, item, idx, NULL, 0, expand); cmdlist = args_make_commands(state, 0, NULL, &error); if (cmdlist == NULL) { cmdq_error(item, "%s", error); |