summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-05-31 11:17:17 +0900
committerYukihiro Matsumoto <[email protected]>2012-05-31 11:17:17 +0900
commit1431a4d60833aa118cb78668dc5b871a5b25730d (patch)
tree07f67e896913b14b716daf4c8ef7eb680da8879b /include
parentfae483ff2a91e806e714cb7d118c7bfb8aadbeb2 (diff)
downloadmruby-1431a4d60833aa118cb78668dc5b871a5b25730d.tar.gz
mruby-1431a4d60833aa118cb78668dc5b871a5b25730d.zip
disable ENCODING and REGEXP; regexp will be back in the future
Diffstat (limited to 'include')
-rw-r--r--include/mrbconf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mrbconf.h b/include/mrbconf.h
index 9155575a9..e90b685bb 100644
--- a/include/mrbconf.h
+++ b/include/mrbconf.h
@@ -22,10 +22,10 @@ typedef intptr_t mrb_sym;
#define readint(p,base) strtol((p),NULL,(base))
#undef INCLUDE_ENCODING /* not use encoding classes (ascii only) */
-#define INCLUDE_ENCODING /* use UTF-8 encoding classes */
+//#define INCLUDE_ENCODING /* use UTF-8 encoding classes */
#undef INCLUDE_REGEXP /* not use regular expression classes */
-#define INCLUDE_REGEXP /* use regular expression classes */
+//#define INCLUDE_REGEXP /* use regular expression classes */
#ifdef INCLUDE_REGEXP
# define INCLUDE_ENCODING /* Regexp depends Encoding */