diff options
author | Christopher Faylor <me@cgf.cx> | 2000-12-10 00:45:12 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-12-10 00:45:12 +0000 |
commit | ee1d77e4b71f7166d4d8ada84a062bfc73da90e6 (patch) | |
tree | bbe5746e05f5ceb77e4072468ca9a74ef22ff243 /winsup/cygwin/ChangeLog | |
parent | 307cb8ba8270a2eaf5bc1331006e0bd67df920ed (diff) | |
download | cygnal-ee1d77e4b71f7166d4d8ada84a062bfc73da90e6.tar.gz cygnal-ee1d77e4b71f7166d4d8ada84a062bfc73da90e6.tar.bz2 cygnal-ee1d77e4b71f7166d4d8ada84a062bfc73da90e6.zip |
* autoload.cc: Autoload CharToOemA.
* dcrt0.cc (dll_crt0_1): Translate command line to OEM if current codepage is
OEM.
* environ.cc: Add new option 'codepage' to CYGWIN environment variable.
* fhandler_clipboard.cc (fhandler_clipboard::read): Read clipboard in OEM mode
if current codepage is OEM.
* fhandler_console.cc (fhandler_console::read): Only translate console input if
current codepage is ANSI.
* fhandler_console.cc (fhandler_console::write_normal): Translate output data
if current codepage is ANSI.
* pinfo.cc (codepage_init): New function. Setup current codepage from CYGWIN
environment variable and set codepage for file APIs.
* security.cc (read_sd): Translate file name to it if current codepage is OEM.
* winsup.h: (sys_wcstombs,sys_mbstowcs): Use current codepage for translations
between multibyte and widechar string and vice versa.
Diffstat (limited to 'winsup/cygwin/ChangeLog')
-rw-r--r-- | winsup/cygwin/ChangeLog | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 1fa72cd31..6d60f59ec 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,22 @@ +2000-12-09 Egor Duda <deo@logos-m.ru> + + * autoload.cc: Autoload CharToOemA. + * dcrt0.cc (dll_crt0_1): Translate command line to OEM if current + codepage is OEM. + * environ.cc: Add new option 'codepage' to CYGWIN environment variable. + * fhandler_clipboard.cc (fhandler_clipboard::read): Read clipboard in + OEM mode if current codepage is OEM. + * fhandler_console.cc (fhandler_console::read): Only translate console + input if current codepage is ANSI. + * fhandler_console.cc (fhandler_console::write_normal): Translate + output data if current codepage is ANSI. + * pinfo.cc (codepage_init): New function. Setup current codepage from + CYGWIN environment variable and set codepage for file APIs. + * security.cc (read_sd): Translate file name to it if current codepage + is OEM. + * winsup.h: (sys_wcstombs,sys_mbstowcs): Use current codepage for + translations between multibyte and widechar string and vice versa. + Sat Dec 9 16:29:45 2000 Christopher Faylor <cgf@cygnus.com> * path.cc (normalize_win32_path): Check for explicit use of two slashes |