summaryrefslogtreecommitdiff
path: root/MLKSymbol.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-27 16:17:28 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-27 16:17:28 +0200
commit7ad928e57d7ed8818040327a31b7dad5ec04ec10 (patch)
tree922b8323536ca196e040cd96c9a5a45d08c02a2f /MLKSymbol.m
parent08e462e7a12530c2c7bb8036be05d79d1dfe9456 (diff)
Make symbol printing a tad less incorrect.
Diffstat (limited to 'MLKSymbol.m')
-rw-r--r--MLKSymbol.m4
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