Преглед изворни кода

Permit to press space on illegal parameters

Serj Kalichev пре 4 година
родитељ
комит
bbc7361719
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      clish/shell/shell_tinyrl.c

+ 2 - 1
clish/shell/shell_tinyrl.c

@@ -206,7 +206,8 @@ static bool_t clish_shell_tinyrl_key_space(tinyrl_t *this, int key)
 			}
 		}
 	}
-	if (result)
+// Permit to press space in any cases
+//	if (result)
 		result = tinyrl_insert_text(this, " ");
 	/* keep compiler happy */
 	key = key;