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:
@@ -196,7 +196,7 @@ static void StrVal (void)
|
||||
|
||||
default:
|
||||
CfgWarning (&CfgErrorPos,
|
||||
"Unkown escape sequence `%%%c'", C);
|
||||
"Unkown escape sequence '%%%c'", C);
|
||||
SB_AppendChar (&CfgSVal, '%');
|
||||
SB_AppendChar (&CfgSVal, C);
|
||||
NextChar ();
|
||||
@@ -389,7 +389,7 @@ Again:
|
||||
break;
|
||||
|
||||
default:
|
||||
CfgError (&CfgErrorPos, "Invalid character `%c'", C);
|
||||
CfgError (&CfgErrorPos, "Invalid character '%c'", C);
|
||||
|
||||
}
|
||||
}
|
||||
@@ -410,7 +410,7 @@ void CfgConsume (cfgtok_t T, const char* Msg)
|
||||
void CfgConsumeSemi (void)
|
||||
/* Consume a semicolon */
|
||||
{
|
||||
CfgConsume (CFGTOK_SEMI, "`;' expected");
|
||||
CfgConsume (CFGTOK_SEMI, "';' expected");
|
||||
}
|
||||
|
||||
|
||||
@@ -418,7 +418,7 @@ void CfgConsumeSemi (void)
|
||||
void CfgConsumeColon (void)
|
||||
/* Consume a colon */
|
||||
{
|
||||
CfgConsume (CFGTOK_COLON, "`:' expected");
|
||||
CfgConsume (CFGTOK_COLON, "':' expected");
|
||||
}
|
||||
|
||||
|
||||
@@ -556,7 +556,7 @@ void CfgOpenInput (void)
|
||||
/* Open the file */
|
||||
InputFile = fopen (CfgName, "r");
|
||||
if (InputFile == 0) {
|
||||
Error ("Cannot open `%s': %s", CfgName, strerror (errno));
|
||||
Error ("Cannot open '%s': %s", CfgName, strerror (errno));
|
||||
}
|
||||
|
||||
/* Initialize variables */
|
||||
|
||||
Reference in New Issue
Block a user