cosmetic coding standards ... fix line wrap to 80 columns

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@37252 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2013-10-18 07:27:51 +00:00
parent 6c93004d55
commit 2810bad5f1

View file

@ -2176,10 +2176,13 @@ NSDictionary *GSPrivateDefaultLocale()
{
NSString *old = nil;
/* anything beginning with a '-' is a defaults key and we must strip
the '-' from it. As a special case, we leave the '- in place
for '-GS...' and '--GS...' for backward compatibility. */
if ([key hasPrefix: @"-GS"] == YES || [key hasPrefix: @"--GS"] == YES)
/* anything beginning with a '-' is a defaults key and we
* must strip the '-' from it.
* As a special case, we leave the '- in place for '-GS...'
* and '--GS...' for backward compatibility.
*/
if ([key hasPrefix: @"-GS"] == YES
|| [key hasPrefix: @"--GS"] == YES)
{
old = key;
}
@ -2195,7 +2198,8 @@ NSDictionary *GSPrivateDefaultLocale()
done = YES;
continue;
}
else if ([val hasPrefix: @"-"] == YES && [val isEqual: @"-"] == NO)
else if ([val hasPrefix: @"-"] == YES
&& [val isEqual: @"-"] == NO)
{ // Yet another argument
[argDict setObject: @"" forKey: key]; // arg is empty.
if (old != nil)