From e15390d08d10b3b1183f9954a4bb2f801b04f368 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 21 Dec 2007 04:47:00 +0000 Subject: [PATCH] * encoding.c (rb_enc_find_index): extension libraries have lower case names conventionally. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 ++++- encoding.c | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 85d667d060..c9bc8f6478 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,13 @@ -Fri Dec 21 13:40:11 2007 Nobuyoshi Nakada +Fri Dec 21 13:46:58 2007 Nobuyoshi Nakada * encoding.c (rb_enc_register): set encoding constant. * encoding.c (rb_enc_find_index): replace non-alphanumeric chars with underscores, so that initialize function can be called. + * encoding.c (rb_enc_find_index): extension libraries have lower case + names conventionally. + * ruby.c (proc_options, process_options): finds encoding after load_path is initialized. diff --git a/encoding.c b/encoding.c index fdcceab5a2..ba83837f49 100644 --- a/encoding.c +++ b/encoding.c @@ -302,6 +302,7 @@ rb_enc_find_index(const char *name) char *s = RSTRING_PTR(enclib) + 4, *e = RSTRING_END(enclib); while (s < e) { if (!ISALNUM(*s)) *s = '_'; + else if (ISUPPER(*s)) *s = tolower(*s); ++s; } OBJ_FREEZE(enclib);