diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-02-17 23:38:32 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-02-17 23:38:32 -0800 |
| commit | c9176abee3cba5e72683669f39e97f863c38e475 (patch) | |
| tree | 6d3c6aefa6ad12e4743f939408ecd14268f8565c /include | |
| parent | 59a6d1b514eef7d39f3a78cd588a49490406ecd6 (diff) | |
| parent | 111cbca68c3cf9b352c42012dfeb117024184448 (diff) | |
| download | mruby-c9176abee3cba5e72683669f39e97f863c38e475.tar.gz mruby-c9176abee3cba5e72683669f39e97f863c38e475.zip | |
Merge pull request #852 from masuidrive/change_default_debug_flag
Changed debugger hook to disable
Diffstat (limited to 'include')
| -rw-r--r-- | include/mrbconf.h | 6 |
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 |
