aboutsummaryrefslogtreecommitdiff
path: root/miscutils/Config.in
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-12-20 02:46:48 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-12-20 02:46:48 +0000
commitcfafcc27fa26318943604b900f5a78ceda0bd314 (patch)
treeb8f6595e61380091ba42740cf1ad8bb684e55336 /miscutils/Config.in
parent054e71820ce24b47f88465bb95c303d558355a91 (diff)
downloadbusybox-w32-cfafcc27fa26318943604b900f5a78ceda0bd314.tar.gz
busybox-w32-cfafcc27fa26318943604b900f5a78ceda0bd314.tar.bz2
busybox-w32-cfafcc27fa26318943604b900f5a78ceda0bd314.zip
less: somewhat buggy applet, but nice. Muchly reduced
xstrdup'ing and memory consumption. Made linewrap saner. regex matching code was awful - still buggy, but not as leaky as before. Made buffer size configurable. Killed several static and on-stack buffers. Hopefully eliminated staircase effect on Ctrl-C (unable to reproduce). git-svn-id: svn://busybox.net/trunk/busybox@17012 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'miscutils/Config.in')
-rw-r--r--miscutils/Config.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/miscutils/Config.in b/miscutils/Config.in
index 90e2b6fb1..01d1fa0a5 100644
--- a/miscutils/Config.in
+++ b/miscutils/Config.in
@@ -133,6 +133,11 @@ config LESS
133 'less' is a pager, meaning that it displays text files. It possesses 133 'less' is a pager, meaning that it displays text files. It possesses
134 a wide array of features, and is an improvement over 'more'. 134 a wide array of features, and is an improvement over 'more'.
135 135
136config FEATURE_LESS_MAXLINES
137 int "Max number of input lines less will try to eat"
138 default 9999999
139 depends on LESS
140
136config FEATURE_LESS_BRACKETS 141config FEATURE_LESS_BRACKETS
137 bool "Enable bracket searching" 142 bool "Enable bracket searching"
138 default y 143 default y