diff options
-rw-r--r-- | MLKReadEvalPrintLoop.m | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MLKReadEvalPrintLoop.m b/MLKReadEvalPrintLoop.m index 2ddc5d7..a23ba36 100644 --- a/MLKReadEvalPrintLoop.m +++ b/MLKReadEvalPrintLoop.m @@ -31,6 +31,10 @@ #import <Foundation/NSNull.h> #import <Foundation/NSString.h> +#ifdef GNUSTEP +#import <Foundation/NSDebug.h> +#endif + #import <histedit.h> @@ -132,7 +136,13 @@ static const char *prompt (EditLine *e) { if (strcmp (line, ":q\n") == 0 || strncmp (line, ":q ", 3) == 0) break; +#if 1 NS_DURING +#else + GSDebugAllocationActive (YES); + [NSObject enableDoubleReleaseCheck:YES]; + NSZombieEnabled = YES; +#endif { int i; @@ -150,6 +160,7 @@ static const char *prompt (EditLine *e) { printf ("%s\n", [MLKPrintToString (denullify (result)) UTF8String]); } } +#if 1 NS_HANDLER { printf ("Caught an unhandled exception.\nName: %s\nReason: %s\n", @@ -157,6 +168,7 @@ static const char *prompt (EditLine *e) { [[localException reason] UTF8String]); } NS_ENDHANDLER; +#endif LRELEASE (pool); } |