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

@ -1,5 +1,12 @@
Fri May 31 10:06:05 1996 Andrew McCallum <mccallum@cs.rochester.edu>
* src/Makefile.in: Rename all `o-*' files to `o_*', and prepend
`o_' to some related files.
* src/NSString.m ([NSString -initWithFormat:arguments:]): Increase
bsprintf buffer size, and assert that we haven't overrun the
buffer.
* src/Makefile.in (GNU_OTHER_SRCFILES): Added win32-entry.c and
win32-def.top.

View file

@ -30,7 +30,7 @@
#include <Foundation/NSObject.h>
#include <Foundation/NSString.h>
#include <Foundation/NSArray.h>
#include <gnustep/base/o-hash.h>
#include <gnustep/base/o_hash.h>
/**** Type, Constant, and Macro Definitions **********************************/

View file

@ -30,7 +30,7 @@
#include <Foundation/NSObject.h>
#include <Foundation/NSString.h>
#include <Foundation/NSArray.h>
#include <gnustep/base/o-map.h>
#include <gnustep/base/o_map.h>
/**** Type, Constant, and Macro Definitions **********************************/

View file

@ -30,7 +30,7 @@
#include <stdlib.h>
#include <Foundation/NSZone.h>
#include <gnustep/base/callbacks.h>
#include <gnustep/base/o-hash.h>
#include <gnustep/base/o_hash.h>
/**** Type, Constant, and Macro Definitions **********************************/
@ -82,8 +82,8 @@ struct _o_array_enumerator
/** Basics **/
#include <gnustep/base/o-array-bas.h>
#include <gnustep/base/o-array-cbs.h>
#include <gnustep/base/o_array_bas.h>
#include <gnustep/base/o_array_cbs.h>
/** Creating **/

View file

@ -115,8 +115,8 @@ struct _o_hash_enumerator
/* All the structures (hashes, maps, lists, and arrays) have
* the same basic ideas behind them. */
#include <gnustep/base/o-hash-bas.h>
#include <gnustep/base/o-hash-cbs.h>
#include <gnustep/base/o_hash_bas.h>
#include <gnustep/base/o_hash_cbs.h>
/** Callbacks... **/

View file

@ -29,8 +29,8 @@
#include <Foundation/NSZone.h>
#include <gnustep/base/callbacks.h>
#include <gnustep/base/o-hash.h>
#include <gnustep/base/o-array.h>
#include <gnustep/base/o_hash.h>
#include <gnustep/base/o_array.h>
/**** Type, Constant, and Macro Definitions **********************************/
@ -82,8 +82,8 @@ struct _o_list_enumerator
/** Basics **/
#include <gnustep/base/o-list-bas.h>
#include <gnustep/base/o-list-cbs.h>
#include <gnustep/base/o_list-bas.h>
#include <gnustep/base/o_list-cbs.h>
/** Creating **/

View file

@ -29,7 +29,7 @@
#include <Foundation/NSZone.h>
#include <gnustep/base/callbacks.h>
#include <gnustep/base/o-hash.h>
#include <gnustep/base/o_hash.h>
/**** Type, Constant, and Macro Definitions **********************************/
@ -118,8 +118,8 @@ struct _o_map_enumerator
/* All the structures (hashes, maps, lists, and arrays) have
* the same basic ideas behind them. */
#include <gnustep/base/o-map-bas.h>
#include <gnustep/base/o-map-cbs.h>
#include <gnustep/base/o_map_bas.h>
#include <gnustep/base/o_map_cbs.h>
/** Callbacks... **/

View file

@ -29,7 +29,7 @@
#include <Foundation/NSArray.h>
#include <Foundation/NSException.h>
#include <Foundation/NSHashTable.h>
#include <gnustep/base/o-hash.h>
#include <gnustep/base/o_hash.h>
#include "NSCallBacks.h"
/**** Type, Constant, and Macro Definitions **********************************/

View file

@ -29,7 +29,7 @@
#include <Foundation/NSArray.h>
#include <Foundation/NSException.h>
#include <Foundation/NSMapTable.h>
#include <gnustep/base/o-map.h>
#include <gnustep/base/o_map.h>
#include "NSCallBacks.h"
/**** Type, Constant, and Macro Definitions **********************************/

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;
}
}

View file

@ -25,7 +25,7 @@
#include <Foundation/NSThread.h>
#include <Foundation/NSLock.h>
#include <Foundation/NSString.h>
#include <gnustep/base/o-map.h>
#include <gnustep/base/o_map.h>
#include <gnustep/base/Notification.h>
// Notifications

View file

@ -28,7 +28,7 @@
#include <sys/time.h>
#endif /* !WIN32 */
#include <objc/o-hash.h>
#include <objc/o_hash.h>
#include <gnustep/base/Lock.h>
#include <objc/List.h>
#include <gnustep/base/Connection.h>

View file

@ -26,8 +26,8 @@
#include <Foundation/NSZone.h>
#include <gnustep/base/callbacks.h>
#include <gnustep/base/o-array.h>
#include <gnustep/base/o-hash.h>
#include <gnustep/base/o_array.h>
#include <gnustep/base/o_hash.h>
/**** Function Implementations ***********************************************/

View file

@ -27,7 +27,7 @@
#include <Foundation/NSZone.h>
#include <gnustep/base/callbacks.h>
#include <gnustep/base/numbers.h>
#include <gnustep/base/o-hash.h>
#include <gnustep/base/o_hash.h>
/**** Function Implementations ***********************************************/

View file

@ -26,8 +26,8 @@
#include <Foundation/NSZone.h>
#include <gnustep/base/callbacks.h>
#include <gnustep/base/o-list.h>
#include <gnustep/base/o-hash.h>
#include <gnustep/base/o_list.h>
#include <gnustep/base/o_hash.h>
/**** Function Implementations ***********************************************/

View file

@ -26,8 +26,8 @@
#include <Foundation/NSZone.h>
#include <gnustep/base/callbacks.h>
#include <gnustep/base/o-hash.h>
#include <gnustep/base/o-map.h>
#include <gnustep/base/o_hash.h>
#include <gnustep/base/o_map.h>
/**** Function Implementations ***********************************************/