From: Denis Vlasenko Date: Sun, 15 Apr 2007 13:21:01 +0000 (-0000) Subject: lineedit: state->hist_file doesn't exist if !FEATURE_EDITING_SAVEHISTORY, X-Git-Tag: 1_6_0~146 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0922192740ff5dc9eda18d9d7dac03b37d92f7cd;p=platform%2Fupstream%2Fbusybox.git lineedit: state->hist_file doesn't exist if !FEATURE_EDITING_SAVEHISTORY, #ifdef it out --- diff --git a/libbb/lineedit.c b/libbb/lineedit.c index 4fc5e7a..3cb9c3e 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c @@ -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++;) }