Update of /cvsroot/foo/foo/elkfoo/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13860
Modified Files:
tell.m
Log Message:
OSX fix: Method_t -> Method
Index: tell.m
===================================================================
RCS file: /cvsroot/foo/foo/elkfoo/src/tell.m,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** tell.m 5 Aug 2004 23:26:48 -0000 1.4
--- tell.m 5 Aug 2004 23:29:46 -0000 1.5
***************
*** 201,205 ****
--- 201,211 ----
Objc_Send (id obj,
SEL sel,
+ #ifdef NeXT_RUNTIME
+ Method meth,
+ #elif GNU_RUNTIME
Method_t meth,
+ #else
+ #error *** NEITHER NeXT NOR GNU RUNTIME PRESENT ***
+ #endif
int argc,
SchemeObject *argv)
***************
*** 535,539 ****
SEL sel = @selector(name); // to make compiler shut up
id obj = nil; // idem
! Method_t meth;
// Alloca_Begin;
GC_Node2;
--- 541,551 ----
SEL sel = @selector(name); // to make compiler shut up
id obj = nil; // idem
! #ifdef NeXT_RUNTIME
! Method meth,
! #elif GNU_RUNTIME
! Method_t meth,
! #else
! #error *** NEITHER NeXT NOR GNU RUNTIME PRESENT ***
! #endif
// Alloca_Begin;
GC_Node2;
***************
*** 649,653 ****
SEL sel = @selector(name); // make compiler shut up
id obj = nil; // idem
! Method_t meth;
// Alloca_Begin;
--- 661,671 ----
SEL sel = @selector(name); // make compiler shut up
id obj = nil; // idem
! #ifdef NeXT_RUNTIME
! Method meth,
! #elif GNU_RUNTIME
! Method_t meth,
! #else
! #error *** NEITHER NeXT NOR GNU RUNTIME PRESENT ***
! #endif
// Alloca_Begin;
|