diff options
author | pancake <pancake@nopcode.org> | 2010-08-30 23:49:15 +0200 |
---|---|---|
committer | pancake <pancake@nopcode.org> | 2010-08-30 23:49:15 +0200 |
commit | 596bb133a55a6aba13b55795a9a38e29fcf1b38b (patch) | |
tree | 3bbbcb665279b729d406d4157beb47a129379890 /st.c | |
parent | 0ba53e48c76a2a2668dfa270cfd0227461c3a91b (diff) | |
download | st-596bb133a55a6aba13b55795a9a38e29fcf1b38b.tar.gz st-596bb133a55a6aba13b55795a9a38e29fcf1b38b.zip |
fix build
use config.def.h mechanism
add SHELL in config.h
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -213,10 +213,10 @@ static inline int selected(int x, int y) { | |||
213 | if ((seley==y && selby==y)) { | 213 | if ((seley==y && selby==y)) { |
214 | int bx = MIN(selbx, selex); | 214 | int bx = MIN(selbx, selex); |
215 | int ex = MAX(selbx, selex); | 215 | int ex = MAX(selbx, selex); |
216 | return if(x>=bx && x<=ex) | 216 | return (x>=bx && x<=ex); |
217 | } | 217 | } |
218 | return (((y>sb[1] && y<se[1]) || (y==se[1] && x<=se[0])) || \ | 218 | return (((y>sb[1] && y<se[1]) || (y==se[1] && x<=se[0])) || \ |
219 | (y==sb[1] && x>=sb[0] && (x<=se[0] || sb[1]!=se[1]))) | 219 | (y==sb[1] && x>=sb[0] && (x<=se[0] || sb[1]!=se[1]))); |
220 | } | 220 | } |
221 | 221 | ||
222 | static void getbuttoninfo(XEvent *e, int *b, int *x, int *y) { | 222 | static void getbuttoninfo(XEvent *e, int *b, int *x, int *y) { |
@@ -331,7 +331,7 @@ die(const char *errstr, ...) { | |||
331 | void | 331 | void |
332 | execsh(void) { | 332 | execsh(void) { |
333 | char *args[3] = {getenv("SHELL"), "-i", NULL}; | 333 | char *args[3] = {getenv("SHELL"), "-i", NULL}; |
334 | DEFAULT(args[0], "/bin/sh"); /* if getenv() failed */ | 334 | DEFAULT(args[0], SHELL); /* if getenv() failed */ |
335 | putenv("TERM=" TNAME); | 335 | putenv("TERM=" TNAME); |
336 | execvp(args[0], args); | 336 | execvp(args[0], args); |
337 | } | 337 | } |