aboutsummaryrefslogtreecommitdiff
path: root/shell/cmdedit.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/cmdedit.c')
-rw-r--r--shell/cmdedit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/cmdedit.c b/shell/cmdedit.c
index d57e4c12b..b90891587 100644
--- a/shell/cmdedit.c
+++ b/shell/cmdedit.c
@@ -769,7 +769,7 @@ static char **exe_n_cwd_tab_completion(char *command, int *num_matches,
769 goto cont; 769 goto cont;
770 str_found = add_quote_for_spec_chars(found); 770 str_found = add_quote_for_spec_chars(found);
771 if (type == FIND_FILE_ONLY || 771 if (type == FIND_FILE_ONLY ||
772 (type == FIND_EXE_ONLY && is_execute(&st) == TRUE)) 772 (type == FIND_EXE_ONLY && is_execute(&st)))
773 strcat(str_found, " "); 773 strcat(str_found, " ");
774 } 774 }
775 /* Add it to the list */ 775 /* Add it to the list */
@@ -980,7 +980,7 @@ static void input_tab(int *lastWasTab)
980 } 980 }
981 return; 981 return;
982 } 982 }
983 if (*lastWasTab == FALSE) { 983 if (! *lastWasTab) {
984 984
985 char *tmp; 985 char *tmp;
986 int len_found; 986 int len_found;