diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-13 22:57:56 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-13 22:57:56 +0000 |
commit | b3d6e2df95a21034e41d46a18c71dd1c4e07e987 (patch) | |
tree | 2d549a0d8748a9673be658e193a8104149cf2c15 /cmdedit.h | |
parent | 798ab301c772cc18ab64f94386da3c7ec10daf42 (diff) |
Update the lash shell (hopefully the last time...) so things like
echo "foo bar" and echo -n "foo\t\\\\\tbar" work as expected.
Merge prompt printing work from Vladimir.
-Erik
Diffstat (limited to 'cmdedit.h')
-rw-r--r-- | cmdedit.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,13 +1,14 @@ #ifndef CMDEDIT_H #define CMDEDIT_H -#ifdef BB_FEATURE_SH_COMMAND_EDITING +#ifdef BB_FEATURE_COMMAND_EDITING #include <stddef.h> +#include "busybox.h" void cmdedit_init(void); void cmdedit_terminate(void); void cmdedit_read_input(char* promptStr, char* command); /* read a line of input */ -#endif /* BB_FEATURE_SH_COMMAND_EDITING */ +#endif /* BB_FEATURE_COMMAND_EDITING */ #endif /* CMDEDIT_H */ |