Update of /cvsroot/hoc/hoc/HOC_cbits
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19809/HOC_cbits
Modified Files:
Invocation.m Makefile.in
Log Message:
Missing bits from the previous monster commit: remove logging for exceptions,
and add Exception.m to the Makefile.
Index: Makefile.in
===================================================================
RCS file: /cvsroot/hoc/hoc/HOC_cbits/Makefile.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- Makefile.in 3 Aug 2005 18:02:43 -0000 1.8
+++ Makefile.in 27 Sep 2005 12:22:42 -0000 1.9
@@ -11,6 +11,7 @@
NewClass.m \
RetainedHaskellPart.m \
Marshalling.m \
+ Exceptions.m \
$(NULL)
dist_srcdir = HOC_cbits
Index: Invocation.m
===================================================================
RCS file: /cvsroot/hoc/hoc/HOC_cbits/Invocation.m,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Invocation.m 27 Oct 2003 16:48:12 -0000 1.1.1.1
+++ Invocation.m 27 Sep 2005 12:22:41 -0000 1.2
@@ -11,7 +11,6 @@
NS_DURING
ffi_call(cif, fn, rvalue, avalue);
NS_HANDLER
- NSLog(@"exception: %@", localException);
return localException;
NS_ENDHANDLER
return nil;
|