lineedit: state->hist_file doesn't exist if !FEATURE_EDITING_SAVEHISTORY,

#ifdef it out
This commit is contained in:
Denis Vlasenko 2007-04-15 13:21:01 +00:00
parent 84f75b0b94
commit 0922192740

View File

@ -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++;)
}