diff --git a/Documentation/gsdoc/NSUserDefaults.html b/Documentation/gsdoc/NSUserDefaults.html
index bb17b7862..fb73516fc 100644
--- a/Documentation/gsdoc/NSUserDefaults.html
+++ b/Documentation/gsdoc/NSUserDefaults.html
@@ -100,37 +100,38 @@
Methods
Class Methods
@@ -149,157 +150,165 @@ Standards: GNUstep NotMacOS-X NotOpenStep
tries to infer setup from operating system information etc
(in particular, uses the LANGUAGES environment variable).
+
+
++ (void) setUserLanguages: (NSArray*)languages;
+Standards: GNUstep NotMacOS-X NotOpenStep
+
+ Sets the array of user languages preferences. Places the specified
+ array in the NSLanguages user default.
+
Instances Methods
-
+
- (NSArray*) arrayForKey: (NSString*)defaultName;
Looks up a value for a specified default, checks that it is
an array. Returns nil if it is not.
-
+
- (BOOL) boolForKey: (NSString*)defaultName;
Looks up a value for a specified default, checks that it is
a boolean. Returns NO if it is not present.
-
+
- (NSData*) dataForKey: (NSString*)defaultName;
Looks up a value for a specified default, checks that it is
an NSData object. Returns nil if it is not.
-
+
- (NSDictionary*) dictionaryForKey: (NSString*)defaultName;
Looks up a value for a specified default, checks that it is
an NSDictionary object. Returns nil if it is not.
-
+
- (NSDictionary*) dictionaryRepresentation;
-
+
- (float) floatForKey: (NSString*)defaultName;
-
+
- (id) init;
-
+
- (id) initWithUser: (NSString*)username;
-
+
- (int) integerForKey: (NSString*)defaultName;
-
+
- (id) objectForKey: (NSString*)defaultName;
-
+
- (NSDictionary*) persistentDomainForName: (NSString*)domainName;
-
+
- (NSArray*) persistentDomainNames;
-
+
- (void) registerDefaults: (NSDictionary*)dictionary;
-
+
- (void) removeObjectForKey: (NSString*)defaultName;
-
+
- (void) removePersistentDomainForName: (NSString*)domainName;
-
+
- (void) removeVolatileDomainForName: (NSString*)domainName;
-
+
- (NSArray*) searchList;
-
+
- (void) setBool: (BOOL)value forKey: (NSString*)defaultName;
-
+
- (void) setFloat: (float)value forKey: (NSString*)defaultName;
-
+
- (void) setInteger: (int)value forKey: (NSString*)defaultName;
-
+
- (void) setObject: (id)value forKey: (NSString*)defaultName;
-
+
- (void) setPersistentDomain: (NSDictionary*)domain forName: (NSString*)domainName;
-
+
- (void) setSearchList: (NSArray*)array;
-
+
- (void) setVolatileDomain: (NSDictionary*)domain forName: (NSString*)domainName;
-
+
- (NSArray*) stringArrayForKey: (NSString*)defaultName;
-
+
- (NSString*) stringForKey: (NSString*)defaultName;
-
+
- (BOOL) synchronize;
-
+
- (NSDictionary*) volatileDomainForName: (NSString*)domainName;
-
+
- (NSArray*) volatileDomainNames;