Browse Source

Permit to press space on illegal parameters

Serj Kalichev 3 years ago
parent
commit
bbc7361719
1 changed files with 2 additions and 1 deletions
  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;