Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-15 17:21:01 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-15 17:21:01 +0400
commit0922192740ff5dc9eda18d9d7dac03b37d92f7cd (patch)
tree5bc7e80ac2b104cc429dd613bdbf7a4786d3a4ce /libbb
parent84f75b0b94e73ab4d491825181cf74051751dad0 (diff)
lineedit: state->hist_file doesn't exist if !FEATURE_EDITING_SAVEHISTORY,
#ifdef it out
Diffstat (limited to 'libbb')
-rw-r--r--libbb/lineedit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c
index 4fc5e7a61..3cb9c3e28 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++;)
}