Changed most "backticks" (grave accents) into apostrophes.

Quotations that are embraced by tick marks now look better, in most fonts.
This commit is contained in:
Greg King
2019-01-05 14:57:12 -05:00
parent 5ac11b5e88
commit a6b04f6e97
109 changed files with 501 additions and 501 deletions

View File

@@ -102,9 +102,9 @@ void OpenOutputFile ()
/* Open the file */
OutputFile = fopen (OutputFilename, "w");
if (OutputFile == 0) {
Fatal ("Cannot open output file `%s': %s", OutputFilename, strerror (errno));
Fatal ("Cannot open output file '%s': %s", OutputFilename, strerror (errno));
}
Print (stdout, 1, "Opened output file `%s'\n", OutputFilename);
Print (stdout, 1, "Opened output file '%s'\n", OutputFilename);
}
@@ -120,9 +120,9 @@ void OpenDebugOutputFile (const char* Name)
/* Open the file */
OutputFile = fopen (Name, "w");
if (OutputFile == 0) {
Fatal ("Cannot open debug output file `%s': %s", Name, strerror (errno));
Fatal ("Cannot open debug output file '%s': %s", Name, strerror (errno));
}
Print (stdout, 1, "Opened debug output file `%s'\n", Name);
Print (stdout, 1, "Opened debug output file '%s'\n", Name);
}
@@ -138,7 +138,7 @@ void CloseOutputFile ()
remove (OutputFilename);
Fatal ("Cannot write to output file (disk full?)");
}
Print (stdout, 1, "Closed output file `%s'\n", OutputFilename);
Print (stdout, 1, "Closed output file '%s'\n", OutputFilename);
OutputFile = 0;
}