diff options
author | Paul Fox <pgf@brightstareng.com> | 2006-04-05 14:17:24 +0000 |
---|---|---|
committer | Paul Fox <pgf@brightstareng.com> | 2006-04-05 14:17:24 +0000 |
commit | b7b24d61e012eefd8bfc510147fca016f347a349 (patch) | |
tree | ec8972fef6f451fba6e0ce0d433e0a7d7c004d78 /editors | |
parent | 19af279d169d78f1c6dbe7dd22b051c2eabec0c5 (diff) | |
download | busybox-b7b24d61e012eefd8bfc510147fca016f347a349.tar.gz |
adjust ifdefs for inclusion of string_insert() routine
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/vi.c b/editors/vi.c index 2852b384a..9aacae439 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -302,9 +302,9 @@ static void window_size_get(int); // find out what size the window is #ifdef CONFIG_FEATURE_VI_SETOPTS static void showmatching(Byte *); // show the matching pair () [] {} #endif /* CONFIG_FEATURE_VI_SETOPTS */ -#if defined(CONFIG_FEATURE_VI_YANKMARK) || defined(CONFIG_FEATURE_VI_COLON) || defined(CONFIG_FEATURE_VI_CRASHME) +#if defined(CONFIG_FEATURE_VI_YANKMARK) || defined(CONFIG_FEATURE_VI_SEARCH) || defined(CONFIG_FEATURE_VI_CRASHME) static Byte *string_insert(Byte *, Byte *); // insert the string at 'p' -#endif /* CONFIG_FEATURE_VI_YANKMARK || CONFIG_FEATURE_VI_COLON || CONFIG_FEATURE_VI_CRASHME */ +#endif /* CONFIG_FEATURE_VI_YANKMARK || CONFIG_FEATURE_VI_SEARCH || CONFIG_FEATURE_VI_CRASHME */ #ifdef CONFIG_FEATURE_VI_YANKMARK static Byte *text_yank(Byte *, Byte *, int); // save copy of "p" into a register static Byte what_reg(void); // what is letter of current YDreg @@ -2008,7 +2008,7 @@ static void end_cmd_q(void) } #endif /* CONFIG_FEATURE_VI_DOT_CMD */ -#if defined(CONFIG_FEATURE_VI_YANKMARK) || defined(CONFIG_FEATURE_VI_COLON) || defined(CONFIG_FEATURE_VI_CRASHME) +#if defined(CONFIG_FEATURE_VI_YANKMARK) || defined(CONFIG_FEATURE_VI_SEARCH) || defined(CONFIG_FEATURE_VI_CRASHME) static Byte *string_insert(Byte * p, Byte * s) // insert the string at 'p' { int cnt, i; |