brctl: fixing stp parameters incompatibility
[oweals/busybox.git] / Config.in
index 68444839d7891fe8ecaa0029f4c911e671c5957f..e0c01f3ef88b8243f83271cb5eed9e641c5b1349 100644 (file)
--- a/Config.in
+++ b/Config.in
@@ -143,7 +143,6 @@ config FEATURE_CHECK_UNICODE_IN_ENV
 
 config SUBST_WCHAR
        int "Character code to substitute unprintable characters with"
-       range 1 4294967295
        depends on FEATURE_ASSUME_UNICODE
        default 63
        help
@@ -153,7 +152,6 @@ config SUBST_WCHAR
 
 config LAST_SUPPORTED_WCHAR
        int "Range of supported Unicode characters"
-       range 0 4294967295
        depends on FEATURE_ASSUME_UNICODE
        default 767
        help
@@ -163,9 +161,11 @@ config LAST_SUPPORTED_WCHAR
 
          The idea is that many valid printable Unicode chars are
          nevertheless are not displayed correctly. Think about
-         combining charachers, double-wide hieroglyphs and such.
-         Many terminals, xterms and such will fail to handle them
-         correctly.
+         combining charachers, double-wide hieroglyphs, obscure
+         characters in dozens of ancient scripts...
+         Many terminals, terminal emulators, xterms etc will fail
+         to handle them correctly. Choose the smallest value
+         which suits your needs.
 
          Typical values are:
          126 - ASCII only
@@ -174,6 +174,10 @@ config LAST_SUPPORTED_WCHAR
                        code is ~700 bytes smaller for this case.
          4351 (0x10ff) - there are no double-wide chars in [0..4351] range,
                        code is ~300 bytes smaller for this case.
+         12799 (0x31ff) - nearly all non-ideographic characters are
+                       available in [0..12799] range, including
+                       East Asian scripts like katakana, hiragana, hangul,
+                       bopomofo...
          0 - off, any valid printable Unicode character will be printed.
 
 config UNICODE_COMBINING_WCHARS
@@ -192,6 +196,14 @@ config UNICODE_WIDE_WCHARS
          With this option off, any Unicode char with width > 1
          is substituted on output.
 
+config UNICODE_BIDI_SUPPORT
+       bool "Bidirectional character-aware line input"
+       default y
+       depends on FEATURE_ASSUME_UNICODE && !LOCALE_SUPPORT
+       help
+         With this option on, right-to-left Unicode characters
+         are treated differently on input (e.g. cursor movement).
+
 config LONG_OPTS
        bool "Support for --long-options"
        default y