diff options
author | Glenn L McGrath | 2004-01-25 08:46:10 +0000 |
---|---|---|
committer | Glenn L McGrath | 2004-01-25 08:46:10 +0000 |
commit | bbbe21d6b035166f67e1b327ef1fb8ded1c51937 (patch) | |
tree | 87ceef4c81f899f0d5afde455970e550c3ba882d | |
parent | 4766a2d56c7e293eef248d46d02cb369148e7258 (diff) | |
download | busybox-bbbe21d6b035166f67e1b327ef1fb8ded1c51937.zip busybox-bbbe21d6b035166f67e1b327ef1fb8ded1c51937.tar.gz |
Fix compile error when tab completion disabled
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 80145da..d488a54 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -4117,7 +4117,7 @@ changepath(const char *newval) firstchange = 0; clearcmdentry(firstchange); builtinloc = idx_bltin; -#ifdef CONFIG_FEATURE_COMMAND_EDITING +#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION cmdedit_path_lookup = newval; #endif } |