diff options
author | Tomas Heinrich <heinrich.tomas@gmail.com> | 2010-03-18 18:35:37 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-18 18:35:37 +0100 |
commit | c5c006c10c060e7f1a97250d039051b93ed390b2 (patch) | |
tree | b281136c99e6a27a530282a0b1b7eaf938704bb2 /Config.in | |
parent | 98f1dc12f1554aca6c3743bec1c3d8982a077f7c (diff) | |
download | busybox-w32-c5c006c10c060e7f1a97250d039051b93ed390b2.tar.gz busybox-w32-c5c006c10c060e7f1a97250d039051b93ed390b2.tar.bz2 busybox-w32-c5c006c10c060e7f1a97250d039051b93ed390b2.zip |
lineedit: first shot at optional unicode bidi input support
function old new delta
read_line_input 4886 5003 +117
in_uint16_table - 97 +97
in_interval_table - 78 +78
static.rtl_b - 68 +68
unicode_isrtl - 55 +55
isrtl_str - 51 +51
static.rtl_p - 42 +42
unicode_conv_to_printable2 633 477 -156
------------------------------------------------------------------------------
(add/remove: 6/0 grow/shrink: 1/1 up/down: 508/-156) Total: 352 bytes
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 | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -196,6 +196,14 @@ config UNICODE_WIDE_WCHARS | |||
196 | With this option off, any Unicode char with width > 1 | 196 | With this option off, any Unicode char with width > 1 |
197 | is substituted on output. | 197 | is substituted on output. |
198 | 198 | ||
199 | config UNICODE_BIDI_SUPPORT | ||
200 | bool "Bidirectional character-aware line input" | ||
201 | default y | ||
202 | depends on FEATURE_ASSUME_UNICODE && !LOCALE_SUPPORT | ||
203 | help | ||
204 | With this option on, right-to-left Unicode characters | ||
205 | are treated differently on input (e.g. cursor movement). | ||
206 | |||
199 | config LONG_OPTS | 207 | config LONG_OPTS |
200 | bool "Support for --long-options" | 208 | bool "Support for --long-options" |
201 | default y | 209 | default y |