From afb7b3e1f8fd426342a77aa4439cc0ce080c72e9 Mon Sep 17 00:00:00 2001 From: naruse Date: Mon, 7 Mar 2005 16:22:18 +0000 Subject: [PATCH] * ext/nkf/nkf-utf8/nkf.c: follow nkf 1.66 fixed: [ruby-dev:25828] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8109 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/nkf/nkf-utf8/nkf.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bcd50104ad..57f3832e45 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Mar 8 01:19:00 2005 NARUSE, Yui + + * ext/nkf/nkf-utf8/nkf.c: follow nkf 1.66 + fixed: [ruby-dev:25828] + Mon Mar 7 21:29:40 2005 GOTOU Yuuzou * lib/webrick/server.rb (WEBrick::GenericServer#start): should diff --git a/ext/nkf/nkf-utf8/nkf.c b/ext/nkf/nkf-utf8/nkf.c index f3470136e7..20cbbab88e 100644 --- a/ext/nkf/nkf-utf8/nkf.c +++ b/ext/nkf/nkf-utf8/nkf.c @@ -1249,7 +1249,7 @@ options(cp) } continue; case 'm': /* MIME support */ - mime_decode_f = TRUE; + /* mime_decode_f = TRUE; */ /* this has too large side effects... */ if (*cp=='B'||*cp=='Q') { mime_decode_mode = *cp++; mimebuf_f = FIXED_MIME; @@ -1258,6 +1258,7 @@ options(cp) } else if (*cp=='S') { mime_f = STRICT_MIME; cp++; } else if (*cp=='0') { + mime_decode_f = FALSE; mime_f = FALSE; cp++; } continue;