Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/ChangeLog')
-rw-r--r--winsup/cygwin/ChangeLog23
1 files changed, 23 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 98b5076ce..a5213a705 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,26 @@
+2008-02-06 Corinna Vinschen <corinna@vinschen.de>
+
+ * fhandler.h (fhandler_console::trunc_buf): Add to use as cache for
+ truncated multibyte characters on input.
+ (fhandler_console::write_replacement_char): Declare new method.
+ * fhandler_console.cc (CONVERT_LIMIT): Raise to 64K.
+ (fhandler_console::fhandler_console): Initialize trunc_buf.
+ (ERR): Define as independent value again.
+ (fhandler_console::write_replacement_char): New method to print
+ replacement chars.
+ (fhandler_console::write_normal): Add handling for truncated multibyte
+ sequences. Call next_char instead of pathetic CharNextExA function.
+ Don't change src, rather just work with found later on.
+ * miscfuncs.cc (is_cp_multibyte): Move here from strfuncs.cc.
+ Don't call Windows function, restrict to well-known ANSI/OEM codepages
+ and UTF-8.
+ (next_char): Call CharNextExA only for doublebyte codepages.
+ Implement for UTF-8 here.
+ * strfuncs.cc (is_cp_multibyte): Move to miscfuncs.cc.
+ * winsup.h (next_char): Declare.
+ * include/limits.h (MB_LEN_MAX): Set to maximum value of MB_CUR_MAX
+ as defined by newlib for now.
+
2008-02-05 Corinna Vinschen <corinna@vinschen.de>
* autoload.cc (CharToOemA): Remove.