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

@@ -1,7 +1,7 @@
goto.c(8): Warning: Goto at line 8 to label start jumps into a block with initialization of an object that has automatic storage duration
goto.c(97): Warning: `a' is defined but never used
goto.c(117): Warning: `a' is defined but never used
goto.c(137): Warning: `a' is defined but never used
goto.c(97): Warning: 'a' is defined but never used
goto.c(117): Warning: 'a' is defined but never used
goto.c(137): Warning: 'a' is defined but never used
goto.c(159): Warning: Goto at line 23 to label l8 jumps into a block with initialization of an object that has automatic storage duration
goto.c(159): Warning: Goto at line 44 to label l8 jumps into a block with initialization of an object that has automatic storage duration
goto.c(159): Warning: Goto at line 65 to label l8 jumps into a block with initialization of an object that has automatic storage duration

View File

@@ -32,7 +32,7 @@ int main(void)
fs=(func((fd/a),(func(2,0x0082c90f))));
}
i get "Error: `)' expected" on that line. (this is with the snapshot, freshly
i get "Error: ')' expected" on that line. (this is with the snapshot, freshly
compiled 5 minutes ago)
*/

View File

@@ -8,7 +8,7 @@
#include <stdio.h>
/*
...gives "test.c(2): Error: Variable `foo' has unknown size" using -Cl.
...gives "test.c(2): Error: Variable 'foo' has unknown size" using -Cl.
Is it really unknown?
cc65 V2.13.0, SVN version: 4384

View File

@@ -11,12 +11,12 @@ Compiler is build from cc65-snapshot-2.13.9.20101031 sources.
Expected results and also what I get from this without any optimisations
are: 48663 and 49218
When I turn on ``-O``: 58096 and 58096. After swapping the two variable
declaration lines in `calculate_checksum()` the results are correct
with ``-O``.
When I turn on ''-O'': 58096 and 58096. After swapping the two variable
declaration lines in 'calculate_checksum()' the results are correct
with ''-O''.
But with ``--O --static-locals`` the results are incorrect again (31757
and 15408). ``--static-locals`` alone works though.
But with ''--O --static-locals'' the results are incorrect again (31757
and 15408). ''--static-locals'' alone works though.
*/
#include <stdio.h>

View File

@@ -8,15 +8,15 @@
with SVN version: 4973M
$ cl65 -v -o test.prg tests/cc65110210.c
Opened include file `/usr/local/lib/cc65/include/stdio.h'
Opened include file `/usr/local/lib/cc65/include/stddef.h'
Opened include file `/usr/local/lib/cc65/include/stdarg.h'
Opened include file `/usr/local/lib/cc65/include/limits.h'
Opened include file '/usr/local/lib/cc65/include/stdio.h'
Opened include file '/usr/local/lib/cc65/include/stddef.h'
Opened include file '/usr/local/lib/cc65/include/stdarg.h'
Opened include file '/usr/local/lib/cc65/include/limits.h'
0 errors, 0 warnings
Opened output file `tests/cc65110210.s'
Wrote output to `tests/cc65110210.s'
Closed output file `tests/cc65110210.s'
cl65: Subprocess `ld65' aborted by signal 11
Opened output file 'tests/cc65110210.s'
Wrote output to 'tests/cc65110210.s'
Closed output file 'tests/cc65110210.s'
cl65: Subprocess 'ld65' aborted by signal 11
*/

View File

@@ -1626,7 +1626,7 @@ part7(){
overflow:
sigsave = 0;
Z = V9;
printf("Can `Z = -Y' overflow?\n");
printf("Can 'Z = -Y' overflow?\n");
printf("Trying it on Y = %.17e .\n", Y);
V9 = - Y;
V0 = V9;
@@ -2087,7 +2087,7 @@ Instructions()
{
static char *instr[] = {
"Lest this program stop prematurely, i.e. before displaying\n",
" `END OF TEST',\n",
" 'END OF TEST',\n",
"try to persuade the computer NOT to terminate execution when an",
"error like Over/Underflow or Division by Zero occurs, but rather",
"to persevere with a surrogate value after, perhaps, displaying some",
@@ -2170,8 +2170,8 @@ History()
" FAILUREs, like 2+2 == 5 .",
"Failures may confound subsequent diagnoses.\n",
"The diagnostic capabilities of this program go beyond an earlier",
"program called `MACHAR', which can be found at the end of the",
"book `Software Manual for the Elementary Functions' (1980) by",
"program called 'MACHAR', which can be found at the end of the",
"book 'Software Manual for the Elementary Functions' (1980) by",
"W. J. Cody and W. Waite. Although both programs try to discover",
"the Radix, Precision and range (over/underflow thresholds)",
"of the arithmetic, this program tries to cope with a wider variety",

View File

@@ -52,7 +52,7 @@ compare_char_to_lits1 (void)
failures++;
}
/* achar0 should be `5' */
/* achar0 should be '5' */
void
compare_char_to_lits2 (void)
{
@@ -106,7 +106,7 @@ compare_int_to_lits1 (void)
failures++;
}
/* aint0 should be `5' */
/* aint0 should be '5' */
void
compare_int_to_lits2 (void)
{
@@ -123,7 +123,7 @@ compare_int_to_lits2 (void)
failures++;
}
/* aint0 should be `0x1234' */
/* aint0 should be '0x1234' */
void
compare_int_to_lits3 (void)
{