* 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
This commit is contained in:
nobu 2007-12-21 04:47:00 +00:00
Родитель ef0706a5bf
Коммит e15390d08d
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,10 +1,13 @@
Fri Dec 21 13:40:11 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
Fri Dec 21 13:46:58 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* 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.

Просмотреть файл

@ -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);