([ConstantKeyedCollection -description]): Instead of @%, use %s and [s

cStringNoCopy].


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1559 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-05-27 15:04:04 +00:00
parent f7fae0cbd9
commit a0861df80f

View file

@ -238,7 +238,9 @@
FOR_KEYED_COLLECTION(self, o, k)
{
[s appendFormat: @"(%@,%@) ", [k description], [o description]];
[s appendFormat: @"(%s,%s) ",
[[k description] cStringNoCopy],
[[o description] cStringNoCopy]];
}
END_FOR_KEYED_COLLECTION(self);
[s appendFormat: @" :%s\n", object_get_class_name (self)];