mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Minor fix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@12520 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a9292d5baf
commit
87e6b3d3b7
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-02-13 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSString.m: ([stringByExpandingTildeInPath]) fix bug in
|
||||
handling ~username/... format.
|
||||
|
||||
2002-02-12 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Tools/AGSHtml.m: support for merging types and functions etc.
|
||||
|
|
|
@ -2645,7 +2645,7 @@ handle_printf_atsign (FILE *stream,
|
|||
|
||||
if (first_slash_range.length != 0)
|
||||
{
|
||||
uname_len = first_slash_range.length - 1;
|
||||
uname_len = first_slash_range.location - 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue