diff --git a/Tools/autogsdoc.m b/Tools/autogsdoc.m
index 80101c753..f7dcf8688 100644
--- a/Tools/autogsdoc.m
+++ b/Tools/autogsdoc.m
@@ -1701,18 +1701,18 @@ main(int argc, char **argv, char **env)
// skeleton for table of contents files
[tocSkel setString: @"\n"
-"\n"
-"\n"
-" \n"
-" [typeU]\n"
-" \n"
-" \n"
-" \n"
-" \n"
-" \n"
-" \n"
-"\n"];
+@"\n"
+@"\n"
+@" \n"
+@" [typeU]\n"
+@" \n"
+@" \n"
+@" \n"
+@" \n"
+@" \n"
+@" \n"
+@"\n"];
[tocSkel replaceOccurrencesOfString: @"[prjName]" withString: project
options: 0
range: NSMakeRange(0, [tocSkel length])];
@@ -1720,26 +1720,26 @@ main(int argc, char **argv, char **env)
// file for top-left frame (header only; rest appended below)
idxIndexFile = [@"MainIndex" stringByAppendingPathExtension: @"html"];
[idxIndex setString: @"\n
\n"
-" Index
\n"
-" "];
+@" Index
\n"
+@" "];
// this becomes index.html
framesetFile = [@"index" stringByAppendingPathExtension: @"html"];
[frameset setString: @"\n"
-"\n"
-" \n"
-" \n"
-" Autogsdoc-generated Documentation for [prjName]\n"
-" \n"
-" \n"
-" \n"
-"\n"];
+@"\n"
+@" \n"
+@" \n"
+@" Autogsdoc-generated Documentation for [prjName]\n"
+@" \n"
+@" \n"
+@" \n"
+@" \n"
+@" \n"
+@" \n"
+@" \n"
+@" \n"
+@" \n"
+@"\n"];
[frameset replaceOccurrencesOfString: @"[prjName]" withString: project
options: 0
range: NSMakeRange(0, [frameset length])];
@@ -1809,25 +1809,25 @@ main(int argc, char **argv, char **env)
if (i == [gFiles count])
{
NSLog(@"\n\nNOTE: Generating a simple introductory page for your"
-" project.\nTo replace this with a custom version, edit the gsdoc file \n"
-"named %@ in the documentation output directory.\n"
-"Then include this file in the arguments to autogsdoc.\n\n", prjFile);
+@" project.\nTo replace this with a custom version, edit the gsdoc file \n"
+@"named %@ in the documentation output directory.\n"
+@"Then include this file in the arguments to autogsdoc.\n\n", prjFile);
NSMutableString *prjFileContents =
[NSMutableString stringWithCapacity: cap];
[prjFileContents setString: @"\n"
-"\n"
-"\n"
-" \n"
-" The [prjName] Project\n"
-" \n"
-" \n"
-" \n"
-" The index below lists the major components of the [prjName] \n"
-" documentation.
\n"
-" \n"
-" \n"
-" \n"
-"\n"];
+@"\n"
+@"\n"
+@" \n"
+@" The [prjName] Project\n"
+@" \n"
+@" \n"
+@" \n"
+@" The index below lists the major components of the [prjName] \n"
+@" documentation.
\n"
+@" \n"
+@" \n"
+@" \n"
+@"\n"];
[prjFileContents replaceOccurrencesOfString: @"[prjName]"
withString: project
options: 0