aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-01-25 08:46:10 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-01-25 08:46:10 +0000
commit552d0bc36822c84c67fb1d35bd683fd3ef0b0217 (patch)
tree87ceef4c81f899f0d5afde455970e550c3ba882d /shell
parentc95360eebd229dfb703f12e218bb4545aa845221 (diff)
downloadbusybox-w32-552d0bc36822c84c67fb1d35bd683fd3ef0b0217.tar.gz
busybox-w32-552d0bc36822c84c67fb1d35bd683fd3ef0b0217.tar.bz2
busybox-w32-552d0bc36822c84c67fb1d35bd683fd3ef0b0217.zip
Fix compile error when tab completion disabled
git-svn-id: svn://busybox.net/trunk/busybox@8346 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
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)
4117 firstchange = 0; 4117 firstchange = 0;
4118 clearcmdentry(firstchange); 4118 clearcmdentry(firstchange);
4119 builtinloc = idx_bltin; 4119 builtinloc = idx_bltin;
4120#ifdef CONFIG_FEATURE_COMMAND_EDITING 4120#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
4121 cmdedit_path_lookup = newval; 4121 cmdedit_path_lookup = newval;
4122#endif 4122#endif
4123} 4123}