aboutsummaryrefslogtreecommitdiffstats
path: root/enc/utf_8.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-15 05:49:52 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-15 05:49:52 +0000
commit75a1d33bcfe767724e883737da9c9d5c3a031e17 (patch)
treeb2b1324cc04e04f9eed297f2bfd9192d88bffb2c /enc/utf_8.c
parent078b6c98383ed2acb912866f4ac2b47e86cd0805 (diff)
downloadruby-75a1d33bcfe767724e883737da9c9d5c3a031e17.tar.gz
enc: fundamental encindex
* enc/{ascii,us_ascii,utf_8}.c: set encoding indexes of fundamental built-in encodings so that usable as well as allocated rb_encoding before rb_enc_init(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51862 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc/utf_8.c')
-rw-r--r--enc/utf_8.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/enc/utf_8.c b/enc/utf_8.c
index 8ab8792a6d..ae5258dae2 100644
--- a/enc/utf_8.c
+++ b/enc/utf_8.c
@@ -28,6 +28,10 @@
*/
#include "regenc.h"
+#include "encindex.h"
+#ifndef ENCINDEX_UTF_8
+#define ENCINDEX_UTF_8 0
+#endif
#define USE_INVALID_CODE_SCHEME
@@ -424,7 +428,7 @@ OnigEncodingDefine(utf_8, UTF_8) = {
get_ctype_code_range,
left_adjust_char_head,
onigenc_always_true_is_allowed_reverse_match,
- 0,
+ ENCINDEX_UTF_8,
ONIGENC_FLAG_UNICODE,
};
ENC_ALIAS("CP65001", "UTF-8")