summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYuichiro MASUI <[email protected]>2013-02-18 16:36:15 +0900
committerYuichiro MASUI <[email protected]>2013-02-18 16:36:15 +0900
commit111cbca68c3cf9b352c42012dfeb117024184448 (patch)
tree6d3c6aefa6ad12e4743f939408ecd14268f8565c
parent59a6d1b514eef7d39f3a78cd588a49490406ecd6 (diff)
downloadmruby-111cbca68c3cf9b352c42012dfeb117024184448.tar.gz
mruby-111cbca68c3cf9b352c42012dfeb117024184448.zip
Changed debugger hook to disable
-rw-r--r--include/mrbconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mrbconf.h b/include/mrbconf.h
index 62cc73a74..37519b75d 100644
--- a/include/mrbconf.h
+++ b/include/mrbconf.h
@@ -50,7 +50,7 @@
//#define DISABLE_TIME /* Time class */
//#define DISABLE_STRUCT /* Struct class */
//#define DISABLE_STDIO /* use of stdio */
-//#define DISABLE_DEBUG /* hooks for debugger */
+//#define ENABLE_DEBUG /* hooks for debugger */
/* Now DISABLE_GEMS is added as a command line flag in Rakefile, */
/* we do not need to set it here. */
@@ -119,8 +119,8 @@ typedef short mrb_sym;
#ifndef DISABLE_STDIO
#define ENABLE_STDIO
#endif
-#ifndef DISABLE_DEBUG
-#define ENABLE_DEBUG
+#ifndef ENABLE_DEBUG
+#define DISABLE_DEBUG
#endif
#ifndef FALSE