X-Git-Url: https://jasonwoof.com/gitweb/?p=st.git;a=blobdiff_plain;f=st.c;h=0b21404ab8618114ce8b7eaa02b5644aefef47ec;hp=864dfc7179c1c6171ab2fcea74e09a2a5698e012;hb=596bb133a55a6aba13b55795a9a38e29fcf1b38b;hpb=0ba53e48c76a2a2668dfa270cfd0227461c3a91b diff --git a/st.c b/st.c index 864dfc7..0b21404 100644 --- a/st.c +++ b/st.c @@ -213,10 +213,10 @@ static inline int selected(int x, int y) { if ((seley==y && selby==y)) { int bx = MIN(selbx, selex); int ex = MAX(selbx, selex); - return if(x>=bx && x<=ex) + return (x>=bx && x<=ex); } return (((y>sb[1] && y=sb[0] && (x<=se[0] || sb[1]!=se[1]))) + (y==sb[1] && x>=sb[0] && (x<=se[0] || sb[1]!=se[1]))); } static void getbuttoninfo(XEvent *e, int *b, int *x, int *y) { @@ -331,7 +331,7 @@ die(const char *errstr, ...) { void execsh(void) { char *args[3] = {getenv("SHELL"), "-i", NULL}; - DEFAULT(args[0], "/bin/sh"); /* if getenv() failed */ + DEFAULT(args[0], SHELL); /* if getenv() failed */ putenv("TERM=" TNAME); execvp(args[0], args); }