From 60654ffbbf703cd9129e9b4f7d1d5aa880d10d28 Mon Sep 17 00:00:00 2001 From: mccallum Date: Tue, 16 Apr 1996 22:04:21 +0000 Subject: [PATCH] (main): Comment out use of obsolete -withElementsCall:. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1377 72102866-910b-0410-8b05-ffd578937521 --- Testing/string.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Testing/string.m b/Testing/string.m index 898430dc4..49a047830 100644 --- a/Testing/string.m +++ b/Testing/string.m @@ -24,6 +24,7 @@ int main() withString:@"changed"]; print_string(s2); +#if 0 /* An example of treating a string like a Collection: Increment each char. */ { @@ -37,6 +38,7 @@ int main() [s2 withElementsCall:rot13]; print_string(s3); } - +#endif + exit(0); }