Revert change to discard (but not handle) caught exception in typesetter

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@35332 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
wlux 2012-07-31 08:21:17 +00:00
parent 9b080c87e0
commit 6fb7b90d41
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2012-07-31 Wolfgang Lux <wolfgang.lux@gmail.com>
* Source/GSHorizontalTypesetter.m (-layoutGlyphsInLayoutManager:...):
Rethrow exception which isn't handled (and possibly can't be
handled in any reasonable way).
2012-07-24 06:30-EDT Gregory John Casamento <greg.casamento@gmail.com>
* Source/NSImage.m: -[NSImage initWithCoder:] an extension to

View file

@ -1275,8 +1275,8 @@ NS_DURING
*nextGlyphIndex = curGlyph;
NS_HANDLER
NSLog(@"GSHorizontalTypesetter - %@", [localException reason]);
// [lock unlock];
//[localException raise];
[lock unlock];
[localException raise];
ret=0; /* This is never reached, but it shuts up the compiler. */
NS_ENDHANDLER
[lock unlock];