From a555f121fde555b80bb60ff9bc05759b46a6a67e Mon Sep 17 00:00:00 2001 From: Greg King Date: Sun, 6 Sep 2015 12:23:58 -0400 Subject: [PATCH] Fixed the " til " typos. --- src/cc65/preproc.c | 2 +- src/cl65/spawn-amiga.inc | 2 +- src/cl65/spawn-unix.inc | 2 +- src/dbginfo/dbgsh.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cc65/preproc.c b/src/cc65/preproc.c index a5ab4897e..99ce6acc1 100644 --- a/src/cc65/preproc.c +++ b/src/cc65/preproc.c @@ -321,7 +321,7 @@ static void NewStyleComment (void) /* Remove a new style C comment from line. */ { /* Beware: Because line continuation chars are handled when reading - ** lines, we may only skip til the end of the source line, which + ** lines, we may only skip until the end of the source line, which ** may not be the same as the end of the input line. The end of the ** source line is denoted by a lf (\n) character. */ diff --git a/src/cl65/spawn-amiga.inc b/src/cl65/spawn-amiga.inc index 443f42c1f..ce13ae132 100644 --- a/src/cl65/spawn-amiga.inc +++ b/src/cl65/spawn-amiga.inc @@ -55,7 +55,7 @@ int spawnvp (int Mode attribute ((unused)), const char* File attribute ((unused)), char* const argv []) -/* Execute the given program searching and wait til it terminates. The Mode +/* Execute the given program searching and wait until it terminates. The Mode ** argument is ignored (compatibility only). The result of the function is ** the return code of the program. The function will terminate the program ** on errors. diff --git a/src/cl65/spawn-unix.inc b/src/cl65/spawn-unix.inc index 1045f7759..283285c76 100644 --- a/src/cl65/spawn-unix.inc +++ b/src/cl65/spawn-unix.inc @@ -63,7 +63,7 @@ int spawnvp (int Mode attribute ((unused)), const char* File, char* const argv []) -/* Execute the given program searching and wait til it terminates. The Mode +/* Execute the given program searching and wait until it terminates. The Mode ** argument is ignored (compatibility only). The result of the function is ** the return code of the program. The function will terminate the program ** on errors. diff --git a/src/dbginfo/dbgsh.c b/src/dbginfo/dbgsh.c index 41200e86a..ba5d83849 100644 --- a/src/dbginfo/dbgsh.c +++ b/src/dbginfo/dbgsh.c @@ -1885,7 +1885,7 @@ int main (int argc, char* argv[]) ExecCmd (&Args, MainCmds, sizeof (MainCmds) / sizeof (MainCmds[0])); } - /* Loop til program end */ + /* Loop until program end */ while (!Terminate) { /* Output a prompt, then read the input */ -- 2.39.2