From 732b9601ed2543b1fa6acbc08ddc05818279265f Mon Sep 17 00:00:00 2001 From: Aurélien Aptel Date: Sun, 28 Nov 2010 13:17:20 +0100 Subject: [PATCH] -e flag handles arguments. --- st.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/st.c b/st.c index 4d04416..d43c30c 100644 --- a/st.c +++ b/st.c @@ -545,11 +545,15 @@ die(const char *errstr, ...) { void execsh(void) { - char *args[] = {getenv("SHELL"), "-i", NULL}; + char **args; + char *envshell = getenv("SHELL"); + DEFAULT(envshell, "sh"); + if(opt_cmd) - args[0] = opt_cmd, args[1] = NULL; + args = (char*[]){"sh", "-c", opt_cmd, NULL}; else - DEFAULT(args[0], SHELL); + args = (char*[]){envshell, "-i", NULL}; + putenv("TERM="TNAME); execvp(args[0], args); } -- libgit2 1.1.1