From f14b26416d4a3ba2a1993b0763a607ef49cc4d4c Mon Sep 17 00:00:00 2001 From: Richard Frith-Macdonald Date: Sat, 15 Dec 2001 09:34:34 +0000 Subject: [PATCH] Fix protocol conformance git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11764 72102866-910b-0410-8b05-ffd578937521 --- Tools/AGSHtml.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tools/AGSHtml.m b/Tools/AGSHtml.m index 3b7af6c74..eea9ba02d 100644 --- a/Tools/AGSHtml.m +++ b/Tools/AGSHtml.m @@ -1227,7 +1227,8 @@ NSLog(@"Element '%@' not implemented", name); // FIXME s = [self makeLink: n ofType: @"protocol" isRef: YES]; if (s != nil) { - t = [s stringByAppendingString: @"t"]; + t = [s stringByAppendingString: t]; + t = [s stringByAppendingString: @""]; } return t; }