From 8e2e0c5ca3d87b96df5a55a1275dd8f2f22a6ce7 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 17 Dec 2007 01:28:26 +0000 Subject: for undefined conversions. * transcode_data_iso_8859.c: Changed from character constants ('\xC2') to integer contants (0xC2) for shorter files and better readability; eliminated duplicated tables; changed from -1 offset to actual UNDEF entry (not yet distinguishing UNDEF and ILLEGAL correctly). * test/ruby/test_transcode.rb: added a test for UNDEF conversion. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14251 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 7fe3cf196..da9d3019c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +Sun Dec 16 17:07:35 2007 Martin Duerst + + * transcode.c (transcode_loop): removed special case (-1) + for undefined conversions. + + * transcode_data_iso_8859.c: Changed from character constants + ('\xC2') to integer contants (0xC2) for shorter files and + better readability; eliminated duplicated tables; changed + from -1 offset to actual UNDEF entry (not yet distinguishing + UNDEF and ILLEGAL correctly). + + * test/ruby/test_transcode.rb: added a test for UNDEF conversion. + Sun Dec 16 14:51:59 2007 Nobuyoshi Nakada * configure.in (MAKEFILES): should be enc/Makefile, not GNUmakefile. -- cgit