summaryrefslogtreecommitdiff
path: root/MLKSymbol.m
diff options
context:
space:
mode:
Diffstat (limited to 'MLKSymbol.m')
-rw-r--r--MLKSymbol.m8
1 files changed, 8 insertions, 0 deletions
diff --git a/MLKSymbol.m b/MLKSymbol.m
index 3443e37..42a7141 100644
--- a/MLKSymbol.m
+++ b/MLKSymbol.m
@@ -18,6 +18,8 @@
#import "MLKSymbol.h"
+#import <Foundation/NSString.h>
+
@implementation MLKSymbol
-(MLKSymbol *) initWithName:(id)aName package:(id)aPackage
@@ -43,6 +45,12 @@
ASSIGN (homePackage, aPackage);
}
+-(NSString *)descriptionForLisp
+{
+ // FIXME: This is wrong in more than one way.
+ return [NSString stringWithFormat:@"|%@|", name];
+}
+
-(void) dealloc
{
RELEASE (name);