Rename all o- files to o_.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1608 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-05-31 15:13:58 +00:00
parent ea2d0648f4
commit e1d2073668
16 changed files with 35 additions and 28 deletions

View file

@ -190,12 +190,12 @@ BOOL NSDecrementExtraRefCountWasZero (id anObject)
struct objc_protocol_list* proto_list;
for (proto_list = ((struct objc_class*)self)->class_pointer->protocols;
proto_list; proto_list = proto_list->next)
proto_list; proto_list = proto_list_>next)
{
for (i=0; i < proto_list->count; i++)
for (i=0; i < proto_list_>count; i++)
{
/* xxx We should add conformsToProtocol to Protocol class. */
if ([proto_list->list[i] conformsTo: aProtocol])
if ([proto_list_>list[i] conformsTo: aProtocol])
return YES;
}
}