From: Glenn L McGrath Date: Sun, 25 Jan 2004 08:46:10 +0000 (-0000) Subject: Fix compile error when tab completion disabled X-Git-Tag: 1_00_pre6~21 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bbbe21d6b035166f67e1b327ef1fb8ded1c51937;p=oweals%2Fbusybox.git Fix compile error when tab completion disabled --- diff --git a/shell/ash.c b/shell/ash.c index 80145dae5..d488a543f 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 }