aboutsummaryrefslogtreecommitdiff
path: root/Config.in
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2023-06-22 17:12:25 +0100
committerRon Yorston <rmy@pobox.com>2023-06-22 17:12:25 +0100
commit597d31eefb4a41abcf2d3c300c2b910b11a9f98c (patch)
treed80419df335c26d0e68c27148a0e48a0000198d6 /Config.in
parent7f23161e989ffc81edf89c2be3077757cc4fa4db (diff)
downloadbusybox-w32-597d31eefb4a41abcf2d3c300c2b910b11a9f98c.tar.gz
busybox-w32-597d31eefb4a41abcf2d3c300c2b910b11a9f98c.tar.bz2
busybox-w32-597d31eefb4a41abcf2d3c300c2b910b11a9f98c.zip
win32: make support for euro input a separate option
Commit 93a63809f (win32: add support for the euro currency symbol) made various changes to enable support for the euro symbol. One of these changes allows the euro to be entered from the console even if the current code page doesn't support it. This is probably of limited use: the symbol can be entered but won't be displayed correctly. Move this capability into a separate configuration option, FEATURE_EURO_INPUT, which is disabled by default. Saves 48-64 bytes in the new default case. (GitHub issue #335)
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/Config.in b/Config.in
index 917712c0c..a8a08a342 100644
--- a/Config.in
+++ b/Config.in
@@ -473,6 +473,15 @@ config FEATURE_EURO
473 requires the OEM code page to be 858. If the OEM code page of 473 requires the OEM code page to be 858. If the OEM code page of
474 the console is 850 when BusyBox starts it's changed to 858. 474 the console is 850 when BusyBox starts it's changed to 858.
475 475
476config FEATURE_EURO_INPUT
477 bool "Allow euro on input, even in code pages without euro support"
478 default n
479 depends on PLATFORM_MINGW32 && FEATURE_EURO
480 help
481 Allow the euro character to be entered in the console even if the
482 current code page doesn't support it. It isn't necessary to
483 enable this setting if the code page in use has euro support.
484
476config TERMINAL_MODE 485config TERMINAL_MODE
477 int "Default setting for terminal mode" 486 int "Default setting for terminal mode"
478 default 5 487 default 5