diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-02-17 23:08:58 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-02-17 23:08:58 -0800 |
| commit | 9b06a4506ed2ae222b19cafd184c66521b720581 (patch) | |
| tree | 7284c80d736823c33978dce1f217973d108a905f /src/init.c | |
| parent | 7ba3275bf70fa62a34ea9015e2b03eefd180afe9 (diff) | |
| parent | e0f25b1fda0c9c67526885fafdabf35d4d4039b7 (diff) | |
| download | mruby-9b06a4506ed2ae222b19cafd184c66521b720581.tar.gz mruby-9b06a4506ed2ae222b19cafd184c66521b720581.zip | |
Merge pull request #850 from mattn/pluggable_regexp
Pluggable regexp
Diffstat (limited to 'src/init.c')
| -rw-r--r-- | src/init.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/init.c b/src/init.c index 73ff8fce2..a85d0483d 100644 --- a/src/init.c +++ b/src/init.c @@ -54,9 +54,7 @@ mrb_init_core(mrb_state *mrb) mrb_init_struct(mrb); DONE; #endif mrb_init_gc(mrb); DONE; -#ifdef ENABLE_REGEXP mrb_init_regexp(mrb); DONE; -#endif #ifdef ENABLE_STDIO mrb_init_print(mrb); DONE; #endif @@ -78,4 +76,4 @@ mrb_final_core(mrb_state *mrb) #ifndef DISABLE_GEMS mrb_final_mrbgems(mrb); DONE; #endif -}
\ No newline at end of file +} |
