diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-06-27 16:17:28 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-06-27 16:17:28 +0200 |
commit | 7ad928e57d7ed8818040327a31b7dad5ec04ec10 (patch) | |
tree | 922b8323536ca196e040cd96c9a5a45d08c02a2f | |
parent | 08e462e7a12530c2c7bb8036be05d79d1dfe9456 (diff) |
Make symbol printing a tad less incorrect.
-rw-r--r-- | MLKSymbol.m | 4 |
1 files changed, 2 insertions, 2 deletions
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 |