diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-17 12:48:23 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-17 12:48:23 +0000 |
commit | a0029e3adc2760bf9e617f6cc1e3ecc88c13779c (patch) | |
tree | 16dfa18bbf5da5616e4891f3ee0ae9f9c138ea8e /re.c | |
parent | 49622de368339b214b3267045f68c3f4bae7e4f8 (diff) | |
download | bundler-a0029e3adc2760bf9e617f6cc1e3ecc88c13779c.tar.gz |
* re.c (rb_char_to_option_kcode): fixed typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 're.c')
-rw-r--r-- | re.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -188,7 +188,7 @@ rb_char_to_option_kcode(int c, int *option, int *kcode) *kcode = rb_enc_find_index("EUC-JP"); break; case 's': - *kcode = rb_enc_find_index("Shitf_JIS"); + *kcode = rb_enc_find_index("Shift_JIS"); break; case 'u': *kcode = rb_enc_find_index("UTF-8"); |