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

@@ -89,7 +89,7 @@ static unsigned GetBytesPerLine (const Collection* A)
const char* V = GetAttrVal (A, "bytesperline");
if ((V && sscanf (V, "%u%c", &BytesPerLine, &C) != 1) ||
(BytesPerLine < 1 || BytesPerLine > 64)) {
Error ("Invalid value for attribute `bytesperline'");
Error ("Invalid value for attribute 'bytesperline'");
}
return BytesPerLine;
}
@@ -105,7 +105,7 @@ static unsigned GetBase (const Collection* A)
/* Check for a base attribute */
const char* V = GetAttrVal (A, "base");
if ((V && sscanf (V, "%u%c", &Base, &C) != 1) || (Base != 10 && Base != 16)) {
Error ("Invalid value for attribute `base'");
Error ("Invalid value for attribute 'base'");
}
return Base;
}
@@ -118,7 +118,7 @@ static const char* GetIdentifier (const Collection* A)
/* Check for a ident attribute */
const char* Ident = GetAttrVal (A, "ident");
if (Ident && !ValidIdentifier (Ident)) {
Error ("Invalid value for attribute `ident'");
Error ("Invalid value for attribute 'ident'");
}
return Ident;
}
@@ -151,7 +151,7 @@ void WriteCFile (const StrBuf* Data, const Collection* A, const Bitmap* B)
/* Open the output file */
F = fopen (Name, "w");
if (F == 0) {
Error ("Cannot open output file `%s': %s", Name, strerror (errno));
Error ("Cannot open output file '%s': %s", Name, strerror (errno));
}
/* Write a readable header */
@@ -220,6 +220,6 @@ void WriteCFile (const StrBuf* Data, const Collection* A, const Bitmap* B)
/* Close the file */
if (fclose (F) != 0) {
Error ("Error closing output file `%s': %s", Name, strerror (errno));
Error ("Error closing output file '%s': %s", Name, strerror (errno));
}
}