diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h index a2042fe5c..7bf9469cb 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1187,9 +1187,9 @@ unsigned long long bb_makedev(unsigned int major, unsigned int minor) FAST_FUNC; | |||
1187 | #if ENABLE_FEATURE_EDITING | 1187 | #if ENABLE_FEATURE_EDITING |
1188 | /* It's NOT just ENABLEd or disabled. It's a number: */ | 1188 | /* It's NOT just ENABLEd or disabled. It's a number: */ |
1189 | #ifdef CONFIG_FEATURE_EDITING_HISTORY | 1189 | #ifdef CONFIG_FEATURE_EDITING_HISTORY |
1190 | #define MAX_HISTORY (CONFIG_FEATURE_EDITING_HISTORY + 0) | 1190 | # define MAX_HISTORY (CONFIG_FEATURE_EDITING_HISTORY + 0) |
1191 | #else | 1191 | #else |
1192 | #define MAX_HISTORY 0 | 1192 | # define MAX_HISTORY 0 |
1193 | #endif | 1193 | #endif |
1194 | typedef struct line_input_t { | 1194 | typedef struct line_input_t { |
1195 | int flags; | 1195 | int flags; |
@@ -1197,7 +1197,11 @@ typedef struct line_input_t { | |||
1197 | #if MAX_HISTORY | 1197 | #if MAX_HISTORY |
1198 | int cnt_history; | 1198 | int cnt_history; |
1199 | int cur_history; | 1199 | int cur_history; |
1200 | USE_FEATURE_EDITING_SAVEHISTORY(const char *hist_file;) | 1200 | #if ENABLE_FEATURE_EDITING_SAVEHISTORY |
1201 | unsigned cnt_history_in_file; | ||
1202 | off_t last_history_end; | ||
1203 | const char *hist_file; | ||
1204 | #endif | ||
1201 | char *history[MAX_HISTORY + 1]; | 1205 | char *history[MAX_HISTORY + 1]; |
1202 | #endif | 1206 | #endif |
1203 | } line_input_t; | 1207 | } line_input_t; |