Changes from home. See ChangeLog Aug 5 through Aug 25

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1662 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-09-02 13:20:20 +00:00
parent 56670c837c
commit c8a1cf2fef
16 changed files with 125 additions and 96 deletions

View file

@ -50,7 +50,9 @@ NSUserName ()
NSString *
NSHomeDirectory ()
{
return [NSString stringWithCString: getenv ("HOME")];
return NSHomeDirectoryForUser (NSUserName ());
/* xxx Was using this. Is there a reason to prefer it?
return [NSString stringWithCString: getenv ("HOME")]; */
}
/* Return LOGIN_NAME's home directory as an NSString object. */