mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2024-12-03 09:20:51 +00:00
lineedit: state->hist_file doesn't exist if !FEATURE_EDITING_SAVEHISTORY,
#ifdef it out
This commit is contained in:
parent
84f75b0b94
commit
0922192740
@ -948,8 +948,10 @@ static void remember_in_history(const char *str)
|
||||
state->history[i++] = xstrdup(str);
|
||||
state->cur_history = i;
|
||||
state->cnt_history = i;
|
||||
#if ENABLE_FEATURE_EDITING_SAVEHISTORY
|
||||
if ((state->flags & SAVE_HISTORY) && state->hist_file)
|
||||
save_history(state->hist_file);
|
||||
#endif
|
||||
USE_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user