(NS_HANDLER): Change local exception variable name.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1668 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1996-09-02 13:55:45 +00:00
parent e73d8edcfe
commit bc94c08299

View file

@ -1,5 +1,5 @@
/* Interface for NSException for GNUStep
Copyright (C) 1995 Free Software Foundation, Inc.
Copyright (C) 1995, 1996 Free Software Foundation, Inc.
Written by: Adam Fedor <fedor@boulder.colorado.edu>
Date: 1995
@ -109,7 +109,7 @@ extern void _NSRemoveHandler( NSHandler *handler );
if( !setjmp(NSLocalHandler.jumpState) ) {
#define NS_HANDLER _NSRemoveHandler(&NSLocalHandler); } else { \
NSException *exception = NSLocalHandler.exception;
NSException *localException = NSLocalHandler.exception;
#define NS_ENDHANDLER }}