diff options
author | Ron Yorston <rmy@pobox.com> | 2024-09-27 11:18:26 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2024-09-27 11:18:26 +0100 |
commit | 940f40e371695d6b247f4b406e7eb580fb91e866 (patch) | |
tree | 8d47683752ee39925ef0231372e17e27c14da35f /libbb/messages.c | |
parent | 917b8bf5595023494456d8555a1f6b801b737bfc (diff) | |
download | busybox-w32-940f40e371695d6b247f4b406e7eb580fb91e866.tar.gz busybox-w32-940f40e371695d6b247f4b406e7eb580fb91e866.tar.bz2 busybox-w32-940f40e371695d6b247f4b406e7eb580fb91e866.zip |
win32: drop workaround for Wine console buffer
Commit 1ade2225d2 (winansi: allow alternative screen buffer to be
disabled) added a workaround for the broken alternative screen
buffer in the Wine console.
The problem has been fixed in Wine for well over a year:
https://bugs.winehq.org/show_bug.cgi?id=54287
Remove the workaround.
Saves 80-96 bytes.
Diffstat (limited to 'libbb/messages.c')
-rw-r--r-- | libbb/messages.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libbb/messages.c b/libbb/messages.c index 27ba244d6..311eda004 100644 --- a/libbb/messages.c +++ b/libbb/messages.c | |||
@@ -36,9 +36,9 @@ const char bb_busybox_exec_path[] ALIGN1 = CONFIG_BUSYBOX_EXEC_PATH; | |||
36 | /* Some special shell variables are placed in the environment immediately | 36 | /* Some special shell variables are placed in the environment immediately |
37 | * when they're exported. | 37 | * when they're exported. |
38 | * | 38 | * |
39 | * BB_GLOBBING and BB_UMASK are excluded because users shouln't be | 39 | * BB_GLOBBING and BB_UMASK are excluded because users shouldn't be |
40 | * messing with them; BB_ALT_BUFFER and BB_FIX_BACKSLASH are excluded | 40 | * messing with them; BB_FIX_BACKSLASH is excluded because it only |
41 | * because they only affect particular applets, not the shell itself. | 41 | * affects particular applets, not the shell itself. |
42 | * | 42 | * |
43 | * If you change any of these you should also update the definitions in | 43 | * If you change any of these you should also update the definitions in |
44 | * include/libbb.h. | 44 | * include/libbb.h. |