diff options
| author | Christoph Lohmann <20h@r-36.net> | 2012-11-13 20:13:39 +0100 | 
|---|---|---|
| committer | Christoph Lohmann <20h@r-36.net> | 2012-11-13 20:13:39 +0100 | 
| commit | 7474a2fc3785eb1aad00f8cf2b50711bbe1fff0b (patch) | |
| tree | 7a179ccfcfa9d93f0e9c3d9e9c9f40a9b2f7d274 /st.c | |
| parent | 620e3bb39ebe617b69b5cb1323b4f47c2f699527 (diff) | |
The style inquisition was here again.
Diffstat (limited to 'st.c')
| -rw-r--r-- | st.c | 16 | 
1 files changed, 11 insertions, 5 deletions
@@ -2700,17 +2700,21 @@ kmap(KeySym k, uint state) {  		if(kp->k != k)  			continue;  		if((state & mask) != mask && -		   (mask == XK_NO_MOD && state)) +				(mask == XK_NO_MOD && state)) {  			continue; +		}  		if((kp->appkey < 0 && IS_SET(MODE_APPKEYPAD)) || -		   (kp->appkey > 0 && !IS_SET(MODE_APPKEYPAD))) +				(kp->appkey > 0 && !IS_SET(MODE_APPKEYPAD))) {  			continue; +		}  		if((kp->appcursor < 0 && IS_SET(MODE_APPCURSOR)) || -		   (kp->appcursor > 0 && !IS_SET(MODE_APPCURSOR))) +				(kp->appcursor > 0 && !IS_SET(MODE_APPCURSOR))) {  			continue; +		}  		if((kp->crlf < 0 && IS_SET(MODE_CRLF)) || -		   (kp->crlf > 0 && !IS_SET(MODE_CRLF))) +				(kp->crlf > 0 && !IS_SET(MODE_CRLF))) {  			continue; +		}  		return kp->s;  	} @@ -2755,6 +2759,7 @@ kpress(XEvent *ev) {  		memcpy(cp, xstr, len);  		len = cp - buf + len;  	} +  	ttywrite(buf, len);  	if(IS_SET(MODE_ECHO))  		techo(buf, len); @@ -2869,7 +2874,7 @@ main(int argc, char *argv[]) {  				opt_class = argv[i];  			break;  		case 'e': -			/* eat every remaining arguments */ +			/* eat all remaining arguments */  			if(++i < argc)  				opt_cmd = &argv[i];  			goto run; @@ -2924,6 +2929,7 @@ run:  	ttynew();  	selinit();  	run(); +  	return 0;  }  | 
