(_NSAssertArgs, _NSCAssertArgs): Made ',' a separate token to work

with ## macro.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@504 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-08-02 15:10:05 +00:00
parent c6673d8b2e
commit 190bfa26f8

View file

@ -150,7 +150,7 @@ extern void _NSRemoveHandler( NSHandler *handler );
object:self \
file:[NSString stringWithCString:__FILE__] \
lineNumber:__LINE__ \
description:(desc), ## args]; \
description:(desc) , ## args]; \
} \
} while(0)
@ -161,7 +161,7 @@ extern void _NSRemoveHandler( NSHandler *handler );
handleFailureInFunction:[NSString stringWithCString:__PRETTY_FUNCTION__] \
file:[NSString stringWithCString:__FILE__] \
lineNumber:__LINE__ \
description:(desc), ## args]; \
description:(desc) , ## args]; \
} \
} while(0)