Commit c9176abe authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #852 from masuidrive/change_default_debug_flag

Changed debugger hook to disable
parents 59a6d1b5 111cbca6
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
//#define DISABLE_TIME /* Time class */ //#define DISABLE_TIME /* Time class */
//#define DISABLE_STRUCT /* Struct class */ //#define DISABLE_STRUCT /* Struct class */
//#define DISABLE_STDIO /* use of stdio */ //#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, */ /* Now DISABLE_GEMS is added as a command line flag in Rakefile, */
/* we do not need to set it here. */ /* we do not need to set it here. */
...@@ -119,8 +119,8 @@ typedef short mrb_sym; ...@@ -119,8 +119,8 @@ typedef short mrb_sym;
#ifndef DISABLE_STDIO #ifndef DISABLE_STDIO
#define ENABLE_STDIO #define ENABLE_STDIO
#endif #endif
#ifndef DISABLE_DEBUG #ifndef ENABLE_DEBUG
#define ENABLE_DEBUG #define DISABLE_DEBUG
#endif #endif
#ifndef FALSE #ifndef FALSE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment