mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-05 14:11:00 +00:00
backport arghs types fix from trunk.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/stable@25347 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0a758b180b
commit
b2948fffd9
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-07-22 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Tools/AGSOutput.m: escape angle brackets in types of function
|
||||||
|
arguments.
|
||||||
|
|
||||||
2007-07-10 Richard Frith-Macdonald <rfm@gnu.org>
|
2007-07-10 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/win32/GSFileHandleWin32.m: Backport fix for pipes.
|
* Source/win32/GSFileHandleWin32.m: Backport fix for pipes.
|
||||||
|
|
|
@ -825,16 +825,16 @@ static BOOL snuggleStart(NSString *t)
|
||||||
NSString *s = [a objectForKey: @"BaseType"];
|
NSString *s = [a objectForKey: @"BaseType"];
|
||||||
|
|
||||||
[str appendString: @" <arg type=\""];
|
[str appendString: @" <arg type=\""];
|
||||||
[str appendString: s];
|
[str appendString: escapeType(s)];
|
||||||
s = [a objectForKey: @"Prefix"];
|
s = [a objectForKey: @"Prefix"];
|
||||||
if (s != nil)
|
if (s != nil)
|
||||||
{
|
{
|
||||||
[str appendString: s];
|
[str appendString: escapeType(s)];
|
||||||
}
|
}
|
||||||
s = [a objectForKey: @"Suffix"];
|
s = [a objectForKey: @"Suffix"];
|
||||||
if (s != nil)
|
if (s != nil)
|
||||||
{
|
{
|
||||||
[str appendString: s];
|
[str appendString: escapeType(s)];
|
||||||
}
|
}
|
||||||
[str appendString: @"\">"];
|
[str appendString: @"\">"];
|
||||||
[str appendString: [a objectForKey: @"Name"]];
|
[str appendString: [a objectForKey: @"Name"]];
|
||||||
|
|
Loading…
Reference in a new issue