mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-12 09:01:05 +00:00
Fix a few typos
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14722 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
36372f83f2
commit
453cf5c91c
2 changed files with 17 additions and 8 deletions
|
@ -118,6 +118,13 @@
|
||||||
environment variables.
|
environment variables.
|
||||||
</p>
|
</p>
|
||||||
</desc>
|
</desc>
|
||||||
|
<term>Local Time Zone</term>
|
||||||
|
<desc>
|
||||||
|
<p>
|
||||||
|
Used to specify the name of the timezone to be used by the
|
||||||
|
<ref type="class" id="NSTimeZone">NSTimeZone</ref> class.
|
||||||
|
</p>
|
||||||
|
</desc>
|
||||||
<term>NSWriteOldStylePropertyLists</term>
|
<term>NSWriteOldStylePropertyLists</term>
|
||||||
<desc>
|
<desc>
|
||||||
<p>
|
<p>
|
||||||
|
@ -309,16 +316,18 @@
|
||||||
</desc>
|
</desc>
|
||||||
<term>NSDeallocateZombies</term>
|
<term>NSDeallocateZombies</term>
|
||||||
<desc>
|
<desc>
|
||||||
|
<p>
|
||||||
This may be used in conjunction with NSZombieEnabled to specify
|
This may be used in conjunction with NSZombieEnabled to specify
|
||||||
whether the objects should really be deallocated. If you set
|
whether the objects should really be deallocated. If you set
|
||||||
this tom YES, the zombie logging will only work until the
|
this to YES, the zombie logging will only work until the
|
||||||
deallocated memory is re-used.
|
deallocated memory is re-used.
|
||||||
|
</p>
|
||||||
</desc>
|
</desc>
|
||||||
<term>NSZombieEnabled</term>
|
<term>NSZombieEnabled</term>
|
||||||
<desc>
|
<desc>
|
||||||
<p>
|
<p>
|
||||||
If this is set to YES, then deallocation of an object causes
|
If this is set to YES, then deallocation of an object causes
|
||||||
the object to be morphes into a Zombie ... a special object
|
the object to be morphed into a Zombie ... a special object
|
||||||
which will call the GNUstep specific GSLogZombie() function
|
which will call the GNUstep specific GSLogZombie() function
|
||||||
to log the method call.<br />
|
to log the method call.<br />
|
||||||
You can set a breakpoint in this function and examine the
|
You can set a breakpoint in this function and examine the
|
||||||
|
|
|
@ -1623,7 +1623,7 @@ static BOOL snuggleStart(NSString *t)
|
||||||
*/
|
*/
|
||||||
if (optr[-2] == '/' && optr[-3] != ' ')
|
if (optr[-2] == '/' && optr[-3] != ' ')
|
||||||
{
|
{
|
||||||
unsigned len = ptr - buf;
|
unsigned len = optr - buf;
|
||||||
unichar c[len + 1];
|
unichar c[len + 1];
|
||||||
|
|
||||||
memcpy(c, buf, (len+1)*sizeof(unichar));
|
memcpy(c, buf, (len+1)*sizeof(unichar));
|
||||||
|
@ -1634,7 +1634,7 @@ static BOOL snuggleStart(NSString *t)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
tmp = [NSString stringWithCharacters: buf length: ptr - buf];
|
tmp = [NSString stringWithCharacters: buf length: optr - buf];
|
||||||
}
|
}
|
||||||
[a addObject: tmp];
|
[a addObject: tmp];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue