add urxvt to exec-failed message

This commit is contained in:
Iris Lightshard 2019-12-02 17:09:06 -05:00
parent 7eb4a2c770
commit d3eba6a99b
Signed by: Iris Lightshard
GPG key ID: 3B7FBC22144E6398
2 changed files with 2 additions and 2 deletions

2
key.c
View file

@ -168,7 +168,7 @@ keypress(XKeyEvent *e)
execlp("urxvt", "urxvt", (char*)0); execlp("urxvt", "urxvt", (char*)0);
execlp("9term", "9term", scrolling ? "-ws" : "-w", (char*)0); execlp("9term", "9term", scrolling ? "-ws" : "-w", (char*)0);
execlp("xterm", "xterm", "-ut", (char*)0); execlp("xterm", "xterm", "-ut", (char*)0);
perror("ryudo: exec 9term/xterm failed"); perror("ryudo: exec urxvt/9term/xterm failed");
} }
} }

2
menu.c
View file

@ -213,7 +213,7 @@ spawn(ScreenInfo *s)
execlp("urxvt", "urxvt", (char*)0); execlp("urxvt", "urxvt", (char*)0);
execlp("9term", "9term", scrolling ? "-ws" : "-w", (char*)0); execlp("9term", "9term", scrolling ? "-ws" : "-w", (char*)0);
execlp("xterm", "xterm", "-ut", (char*)0); execlp("xterm", "xterm", "-ut", (char*)0);
perror("ryudo: exec 9term/xterm failed"); perror("ryudo: exec urxvt/9term/xterm failed");
exit(1); exit(1);
} }
exit(0); exit(0);