зеркало из https://github.com/github/ruby.git
* parse.y (rb_char_to_option_kcode): ASCII-8BIT should also delay.
* re.c (parser_regx_options): return rb_ascii8bit_encindex on ASCII-8BIT. [ruby-dev:39300] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24832 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
9e77c428ed
Коммит
e13ca98198
|
@ -1,3 +1,11 @@
|
||||||
|
Fri Sep 11 02:06:44 2009 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* parse.y (rb_char_to_option_kcode): ASCII-8BIT should
|
||||||
|
also delay.
|
||||||
|
|
||||||
|
* re.c (parser_regx_options): return rb_ascii8bit_encindex on
|
||||||
|
ASCII-8BIT. [ruby-dev:39300]
|
||||||
|
|
||||||
Fri Sep 11 01:14:00 2009 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
|
Fri Sep 11 01:14:00 2009 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
|
||||||
|
|
||||||
* lib/net/http.rb (fetch): rdoc fix, patch by Arthur Schreiber.
|
* lib/net/http.rb (fetch): rdoc fix, patch by Arthur Schreiber.
|
||||||
|
|
9
parse.y
9
parse.y
|
@ -5598,8 +5598,13 @@ parser_regx_options(struct parser_params *parser)
|
||||||
options |= RE_OPTION_ONCE;
|
options |= RE_OPTION_ONCE;
|
||||||
}
|
}
|
||||||
else if (rb_char_to_option_kcode(c, &opt, &kc)) {
|
else if (rb_char_to_option_kcode(c, &opt, &kc)) {
|
||||||
kopt = opt;
|
if (kc >= 0) {
|
||||||
if (kc >= 0) kcode = c;
|
if (kc != rb_ascii8bit_encindex()) kcode = c;
|
||||||
|
kopt = opt;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
options |= opt;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
tokadd(c);
|
tokadd(c);
|
||||||
|
|
4
re.c
4
re.c
|
@ -287,7 +287,7 @@ rb_char_to_option_kcode(int c, int *option, int *kcode)
|
||||||
|
|
||||||
switch (c) {
|
switch (c) {
|
||||||
case 'n':
|
case 'n':
|
||||||
*kcode = -1;
|
*kcode = rb_ascii8bit_encindex();
|
||||||
return (*option = ARG_ENCODING_NONE);
|
return (*option = ARG_ENCODING_NONE);
|
||||||
case 'e':
|
case 'e':
|
||||||
*kcode = rb_enc_find_index("EUC-JP");
|
*kcode = rb_enc_find_index("EUC-JP");
|
||||||
|
@ -296,7 +296,7 @@ rb_char_to_option_kcode(int c, int *option, int *kcode)
|
||||||
*kcode = rb_enc_find_index("Windows-31J");
|
*kcode = rb_enc_find_index("Windows-31J");
|
||||||
break;
|
break;
|
||||||
case 'u':
|
case 'u':
|
||||||
*kcode = rb_enc_find_index("UTF-8");
|
*kcode = rb_utf8_encindex();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
*kcode = -1;
|
*kcode = -1;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче