Change sel_getUid to call sel_registerName, in line with OS X behaviour since 10.0

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31270 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2010-09-09 16:43:29 +00:00
parent 4488708e84
commit 59ba8facf0
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2010-09-09 Eric Wasylishen <ewasylishen@gmail.com>
* Source/ObjectiveC2/runtime.c:
Change sel_getUid to call sel_registerName, in line with OS X behaviour since
10.0
2010-09-02 9avid Chisnall <theraven@gna.org>
* Source/NSBundle.m

View file

@ -1299,9 +1299,7 @@ sel_getType_np(SEL sel)
SEL
sel_getUid(const char *selName)
{
if (selName == 0)
return 0;
return sel_get_uid(selName);
return sel_registerName(selName);
}
BOOL