diff options
Diffstat (limited to 'libbb/Config.src')
-rw-r--r-- | libbb/Config.src | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libbb/Config.src b/libbb/Config.src index a25af23b4..0ea8f43ab 100644 --- a/libbb/Config.src +++ b/libbb/Config.src | |||
@@ -80,11 +80,12 @@ config FEATURE_EDITING_VI | |||
80 | 80 | ||
81 | config FEATURE_EDITING_HISTORY | 81 | config FEATURE_EDITING_HISTORY |
82 | int "History size" | 82 | int "History size" |
83 | range 0 99999 | 83 | # Don't allow way too big values here, code uses fixed "char *history[N]" struct member |
84 | range 0 9999 | ||
84 | default 255 | 85 | default 255 |
85 | depends on FEATURE_EDITING | 86 | depends on FEATURE_EDITING |
86 | help | 87 | help |
87 | Specify command history size. | 88 | Specify command history size (0 - disable). |
88 | 89 | ||
89 | config FEATURE_EDITING_SAVEHISTORY | 90 | config FEATURE_EDITING_SAVEHISTORY |
90 | bool "History saving" | 91 | bool "History saving" |