st-flexipatch

My st-flexipatch configuration
git clone git://git.ethandl.dev/st-flexipatch
Log | Files | Refs | README | LICENSE

commit 63d9b8eefeb7c4f687f451642f340ab59503fa1a
parent 896f5a08c8083a2ac29b7a5ee139a68ecbcb8075
Author: bakkeby <bakkeby@gmail.com>
Date:   Mon, 10 May 2021 10:33:25 +0200

execsh: missing arg argument

https://git.suckless.org/st/commit/21e0d6e8b8d20903494386e7e6f43201b3761154.html

Diffstat:
Mst.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/st.c b/st.c @@ -948,7 +948,7 @@ execsh(char *cmd, char **args) prog = sh; arg = NULL; } - DEFAULT(args, ((char *[]) {prog, NULL})); + DEFAULT(args, ((char *[]) {prog, arg, NULL})); unsetenv("COLUMNS"); unsetenv("LINES");