diff options
author | nicm <nicm> | 2016-03-01 12:06:07 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-03-01 12:06:07 +0000 |
commit | f0239a8fe97367ce7ab66d18716c411b424a0e63 (patch) | |
tree | 13bc7da30a4bfe0833a3a3a655a90e6fc4b97b4b /cmd-if-shell.c | |
parent | 2e4503ad4eec5422e6425480681a261258f7e940 (diff) | |
download | rtmux-f0239a8fe97367ce7ab66d18716c411b424a0e63.tar.gz rtmux-f0239a8fe97367ce7ab66d18716c411b424a0e63.tar.bz2 rtmux-f0239a8fe97367ce7ab66d18716c411b424a0e63.zip |
Remove some more unused variables, and use RB_FOREACH_SAFE in
key_bindings_unref_table.
Diffstat (limited to 'cmd-if-shell.c')
-rw-r--r-- | cmd-if-shell.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd-if-shell.c b/cmd-if-shell.c index 229289cd..3e2a5251 100644 --- a/cmd-if-shell.c +++ b/cmd-if-shell.c @@ -73,14 +73,13 @@ cmd_if_shell_exec(struct cmd *self, struct cmd_q *cmdq) struct format_tree *ft; const char *cwd; - cwd = wp->cwd; - if (cmdq->client != NULL && cmdq->client->session == NULL) cwd = cmdq->client->cwd; else if (s != NULL) cwd = s->cwd; else cwd = NULL; + ft = format_create(cmdq, 0); format_defaults(ft, NULL, s, wl, wp); shellcmd = format_expand(ft, args->argv[0]); |