mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
* Tools/autogsdoc.m, AGSHtml.m, AGSIndex.m, AGSOutput.m: Add
MacOSX compatibility headers. * Tools/AGSParser.m: Idem. (-log:arguments:): Replace strinWithFormat:arguments: with initWithFormat:arguments: git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16282 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7e206578ae
commit
cd3075c8da
6 changed files with 26 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2003-03-27 Stephane Corthesy <stephane@sente.ch>
|
||||||
|
|
||||||
|
* Tools/autogsdoc.m, AGSHtml.m, AGSIndex.m, AGSOutput.m: Add
|
||||||
|
MacOSX compatibility headers.
|
||||||
|
* Tools/AGSParser.m: Idem.
|
||||||
|
(-log:arguments:): Replace strinWithFormat:arguments: with
|
||||||
|
initWithFormat:arguments:
|
||||||
|
|
||||||
2003-03-26 David Ayers <d.ayers@inode.at>
|
2003-03-26 David Ayers <d.ayers@inode.at>
|
||||||
|
|
||||||
* Source/NSKeyValueCoding.m: Added documentation.
|
* Source/NSKeyValueCoding.m: Added documentation.
|
||||||
|
|
|
@ -23,6 +23,10 @@
|
||||||
#include <Foundation/Foundation.h>
|
#include <Foundation/Foundation.h>
|
||||||
#include "AGSHtml.h"
|
#include "AGSHtml.h"
|
||||||
#include "gnustep/base/GNUstep.h"
|
#include "gnustep/base/GNUstep.h"
|
||||||
|
#ifdef NeXT_Foundation_LIBRARY
|
||||||
|
#include "gnustep/base/GSCategories.h"
|
||||||
|
#include "gnustep/base/GSCompatibility.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
static int XML_ELEMENT_NODE;
|
static int XML_ELEMENT_NODE;
|
||||||
static int XML_ENTITY_REF_NODE;
|
static int XML_ENTITY_REF_NODE;
|
||||||
|
|
|
@ -23,6 +23,10 @@
|
||||||
#include <Foundation/Foundation.h>
|
#include <Foundation/Foundation.h>
|
||||||
#include "AGSIndex.h"
|
#include "AGSIndex.h"
|
||||||
#include "gnustep/base/GNUstep.h"
|
#include "gnustep/base/GNUstep.h"
|
||||||
|
#ifdef NeXT_Foundation_LIBRARY
|
||||||
|
#include "gnustep/base/GSCategories.h"
|
||||||
|
#include "gnustep/base/GSCompatibility.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
static int XML_ELEMENT_NODE;
|
static int XML_ELEMENT_NODE;
|
||||||
static int XML_TEXT_NODE;
|
static int XML_TEXT_NODE;
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
|
|
||||||
#include "AGSOutput.h"
|
#include "AGSOutput.h"
|
||||||
#include "gnustep/base/GNUstep.h"
|
#include "gnustep/base/GNUstep.h"
|
||||||
|
#ifdef NeXT_Foundation_LIBRARY
|
||||||
|
#include "gnustep/base/GSCategories.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
@interface AGSOutput (Private)
|
@interface AGSOutput (Private)
|
||||||
- (NSString*) mergeMarkup: (NSString*)markup
|
- (NSString*) mergeMarkup: (NSString*)markup
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
|
|
||||||
#include "AGSParser.h"
|
#include "AGSParser.h"
|
||||||
#include "gnustep/base/GNUstep.h"
|
#include "gnustep/base/GNUstep.h"
|
||||||
|
#ifdef NeXT_Foundation_LIBRARY
|
||||||
|
#include "gnustep/base/GSCategories.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
@implementation AGSParser
|
@implementation AGSParser
|
||||||
|
|
||||||
|
@ -190,7 +193,7 @@
|
||||||
{
|
{
|
||||||
fmt = [NSString stringWithFormat: @"%@:%u %@", fileName, where, fmt];
|
fmt = [NSString stringWithFormat: @"%@:%u %@", fileName, where, fmt];
|
||||||
}
|
}
|
||||||
fmt = [NSString stringWithFormat: fmt arguments: args];
|
fmt = [[[NSString alloc] initWithFormat: fmt arguments: args] autorelease];
|
||||||
if ([fmt hasSuffix: @"\n"] == NO)
|
if ([fmt hasSuffix: @"\n"] == NO)
|
||||||
{
|
{
|
||||||
fmt = [fmt stringByAppendingString: @"\n"];
|
fmt = [fmt stringByAppendingString: @"\n"];
|
||||||
|
|
|
@ -507,6 +507,9 @@
|
||||||
#include "AGSIndex.h"
|
#include "AGSIndex.h"
|
||||||
#include "AGSHtml.h"
|
#include "AGSHtml.h"
|
||||||
#include "gnustep/base/GNUstep.h"
|
#include "gnustep/base/GNUstep.h"
|
||||||
|
#ifdef NeXT_Foundation_LIBRARY
|
||||||
|
#include "gnustep/base/GSCategories.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main(int argc, char **argv, char **env)
|
main(int argc, char **argv, char **env)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue