aboutsummaryrefslogtreecommitdiff
path: root/libbb/Config.src
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/Config.src')
-rw-r--r--libbb/Config.src5
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
81config FEATURE_EDITING_HISTORY 81config 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
89config FEATURE_EDITING_SAVEHISTORY 90config FEATURE_EDITING_SAVEHISTORY
90 bool "History saving" 91 bool "History saving"