Commit Diff


commit - a6945d509456e64ff0b011c691f9e186240685b6
commit + 3f244b1d52d5409776467704ca95d561cdab78e9
blob - 557f48cc5ec76789fae0b7825973c6e90703954f
blob + 9206a44588983de1e62cce887cc3a5f49019106e
--- config.mk
+++ config.mk
@@ -1,5 +1,5 @@
 # dmenu version
-VERSION = 3.7
+VERSION = 3.8
 
 # Customize below to fit your system
 
blob - 2afcc4873aab202743b0694b691235d73ac72000
blob + bf74edb133b04832aa7289c9954b691dc7969b32
--- dmenu.c
+++ dmenu.c
@@ -477,11 +477,11 @@ kpress(XKeyEvent * e) {
 		calcoffsets();
 		break;
 	case XK_Return:
-		if((e->state & ShiftMask) && text)
+		if((e->state & ShiftMask) && *text)
 			fprintf(stdout, "%s", text);
 		else if(sel)
 			fprintf(stdout, "%s", sel->text);
-		else if(text)
+		else if(*text)
 			fprintf(stdout, "%s", text);
 		fflush(stdout);
 		running = False;