From: nicm Date: Wed, 18 Aug 2021 15:16:33 +0000 (+0000) Subject: Need to flatten arguments for aliases. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=6a8657ee4f0ceb203a29efc115a1b5ec62bcfeb0;p=openbsd Need to flatten arguments for aliases. --- diff --git a/usr.bin/tmux/cmd-parse.y b/usr.bin/tmux/cmd-parse.y index 5703a143404..09b46b229fe 100644 --- a/usr.bin/tmux/cmd-parse.y +++ b/usr.bin/tmux/cmd-parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-parse.y,v 1.33 2021/08/18 10:15:08 nicm Exp $ */ +/* $OpenBSD: cmd-parse.y,v 1.34 2021/08/18 15:16:33 nicm Exp $ */ /* * Copyright (c) 2019 Nicholas Marriott @@ -834,6 +834,7 @@ cmd_parse_build_commands(struct cmd_parse_commands *cmds, cmd_parse_free_command(cmd); continue; } + cmd_parse_flatten_command(cmd2); for (i = 1; i < cmd->argc; i++) cmd_append_argv(&cmd2->argc, &cmd2->argv, cmd->argv[i]);