Introduction
Introduction Statistics Contact Development Disclaimer Help
Readding the spawn compatibility to use it in config.h. Thanks to Chris Hall. -…
git clone git://git.suckless.org/tabbed
Log
Files
Refs
README
LICENSE
---
commit ce9b82147dbd347816f25d16d64748cbcb8f549b
parent 4c1101a4f6b8a584d335f28594fcc449886642f4
Author: Christoph Lohmann <[email protected]>
Date: Mon, 20 Aug 2012 09:02:56 +0200
Readding the spawn compatibility to use it in config.h. Thanks to Chris Hall.
Diffstat:
M tabbed.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/tabbed.c b/tabbed.c
@@ -784,8 +784,13 @@ spawn(const Arg *arg) {
if(dpy)
close(ConnectionNumber(dpy));
setsid();
- execvp(cmd[0], cmd);
- fprintf(stderr, "tabbed: execvp %s", cmd[0]);
+ if(arg && arg->v) {
+ execvp(((char **)arg->v)[0], (char **)argv->v);
+ fprintf(stderr, "tabbed: execvp %s", ((char **)arg->v)…
+ } else {
+ execvp(cmd[0], cmd);
+ fprintf(stderr, "tabbed: execvp %s", cmd[0]);
+ }
perror(" failed");
exit(0);
}
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.