aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/shell/ash.c b/shell/ash.c
index ef4a47afe..d29de37b7 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -9720,7 +9720,7 @@ evalpipe(union node *n, int flags)
9720} 9720}
9721 9721
9722/* setinteractive needs this forward reference */ 9722/* setinteractive needs this forward reference */
9723#if EDITING_HAS_get_exe_name 9723#if ENABLE_FEATURE_EDITING
9724static const char *get_builtin_name(int i) FAST_FUNC; 9724static const char *get_builtin_name(int i) FAST_FUNC;
9725#endif 9725#endif
9726 9726
@@ -9757,9 +9757,8 @@ setinteractive(int on)
9757#if ENABLE_FEATURE_EDITING 9757#if ENABLE_FEATURE_EDITING
9758 if (!line_input_state) { 9758 if (!line_input_state) {
9759 line_input_state = new_line_input_t(FOR_SHELL | WITH_PATH_LOOKUP); 9759 line_input_state = new_line_input_t(FOR_SHELL | WITH_PATH_LOOKUP);
9760# if EDITING_HAS_get_exe_name
9761 line_input_state->get_exe_name = get_builtin_name; 9760 line_input_state->get_exe_name = get_builtin_name;
9762# endif 9761 line_input_state->sh_get_var = lookupvar;
9763 } 9762 }
9764#endif 9763#endif
9765 } 9764 }
@@ -10262,7 +10261,7 @@ find_builtin(const char *name)
10262 return bp; 10261 return bp;
10263} 10262}
10264 10263
10265#if EDITING_HAS_get_exe_name 10264#if ENABLE_FEATURE_EDITING
10266static const char * FAST_FUNC 10265static const char * FAST_FUNC
10267get_builtin_name(int i) 10266get_builtin_name(int i)
10268{ 10267{