Commit Diff


commit - 05bc942ed5e21c179729488a7f6a843fc311aad2
commit + 85c820b8b345337d2f8da7b663701ea9c2720944
blob - 8fbd3eb2958d1d7ffbcbcbce895990004b3f8e24
blob + 52bc17e9920905d9b76ef57f474bb6a8b392bf5f
--- minibuffer.c
+++ minibuffer.c
@@ -168,7 +168,7 @@ void
 sensible_self_insert(void)
 {
 	if (thiskey.meta ||
-	    (unicode_isspace(thiskey.key) && thiskey.key != ' ')) {
+	    (!unicode_isgraph(thiskey.key) && thiskey.key != ' ')) {
 		global_key_unbound();
 		return;
 	}