From 7ad928e57d7ed8818040327a31b7dad5ec04ec10 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Fri, 27 Jun 2008 16:17:28 +0200 Subject: Make symbol printing a tad less incorrect. --- MLKSymbol.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'MLKSymbol.m') diff --git a/MLKSymbol.m b/MLKSymbol.m index 48892f8..02cd728 100644 --- a/MLKSymbol.m +++ b/MLKSymbol.m @@ -69,12 +69,12 @@ // NOTE: Need to take *PRINT-GENSYM* into account. // // FIXME: This is wrong in more than one way. - return [NSString stringWithFormat:@"|%@::%@|", [homePackage name], name]; + return [NSString stringWithFormat:@"|%@|::|%@|", [homePackage name], name]; } -(NSString *) description { - return [NSString stringWithFormat:@"|%@::%@|", [homePackage name], name]; + return [NSString stringWithFormat:@"|%@|::|%@|", [homePackage name], name]; } -(BOOL) isEqual:(id)object -- cgit v1.2.3