diff options
author | Denis Vlasenko | 2007-06-10 15:08:44 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-06-10 15:08:44 +0000 |
commit | e8a0788b249cbac5bf5b2aa2d81bb8f6b29a7a4b (patch) | |
tree | fcdf3d51b6d60986b634c693d71355867bca82ff /editors/Config.in | |
parent | d4fea900bdb92d7bba71348a40cb00b6748a8ecc (diff) | |
download | busybox-e8a0788b249cbac5bf5b2aa2d81bb8f6b29a7a4b.zip busybox-e8a0788b249cbac5bf5b2aa2d81bb8f6b29a7a4b.tar.gz |
moved biggest stack buffers to malloc space, or made their size configurable
(8k of shell line edit buffer is an overkill)
# make ARCH=i386 bloatcheck
function old new delta
read_line_input 3933 3967 +34
ifaddrlist 348 345 -3
do_loadfont 208 191 -17
edit_file 840 819 -21
.rodata 129112 129080 -32
uncompress 1305 1268 -37
loadfont_main 566 495 -71
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/6 up/down: 34/-181) Total: -147 bytes
Diffstat (limited to 'editors/Config.in')
-rw-r--r-- | editors/Config.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/editors/Config.in b/editors/Config.in index fd840ae..936004c 100644 --- a/editors/Config.in +++ b/editors/Config.in @@ -50,6 +50,16 @@ config VI learning curve. If you are not already comfortable with 'vi' you may wish to use something else. +config FEATURE_VI_MAX_LEN + int "Maximum line length in vi" + range 256 16384 + default 1024 + depends on VI + help + vi uses on-stack buffers for intermediate line buffers. + You may want to decrease this parameter if your target machine + benefits from smaller stack usage. + config FEATURE_VI_COLON bool "Enable \":\" colon commands (no \"ex\" mode)" default y |