diff options
author | Tomas Heinrich <heinrich.tomas@gmail.com> | 2010-04-29 13:43:39 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-29 13:43:39 +0200 |
commit | a659b81dfa435aa19130a8c7dd1bfe8fa9a22131 (patch) | |
tree | 6e42922ad325142290898143818bcd819f799c27 /Config.in | |
parent | 25b10d97e66a74d4e5a5571afb1b8369c31eefca (diff) | |
download | busybox-w32-a659b81dfa435aa19130a8c7dd1bfe8fa9a22131.tar.gz busybox-w32-a659b81dfa435aa19130a8c7dd1bfe8fa9a22131.tar.bz2 busybox-w32-a659b81dfa435aa19130a8c7dd1bfe8fa9a22131.zip |
libbb/lineedit: add support for preserving "broken" (non-unicode) chars
Signed-off-by: Tomas Heinrich <heinrich.tomas@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'Config.in')
-rw-r--r-- | Config.in | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -223,6 +223,17 @@ config UNICODE_NEUTRAL_TABLE | |||
223 | With this option on, more extensive (and bigger) table | 223 | With this option on, more extensive (and bigger) table |
224 | of neutral chars will be used. | 224 | of neutral chars will be used. |
225 | 225 | ||
226 | config UNICODE_PRESERVE_BROKEN | ||
227 | bool "Make it possible to enter sequences of chars which are not Unicode" | ||
228 | default n | ||
229 | depends on UNICODE_SUPPORT | ||
230 | help | ||
231 | With this option on, invalid UTF-8 bytes are not substituted | ||
232 | with the selected substitution character. | ||
233 | For example, this means that entering 'l', 's', ' ', 0xff, [Enter] | ||
234 | at shell prompt will list file named 0xff (single char name | ||
235 | with char value 255), not file named '?'. | ||
236 | |||
226 | config LONG_OPTS | 237 | config LONG_OPTS |
227 | bool "Support for --long-options" | 238 | bool "Support for --long-options" |
228 | default y | 239 | default y |