ref: c1866624730abc1720bf9e26d113fd50fa0bd3ab
parent: f8be48fc79d6508189794d751e1021b91452f660
author: Jonathan Gray <jsg@jsg.id.au>
date: Sun May 5 10:42:46 EDT 2024
spelling fixes
--- a/FIXES.1e
+++ b/FIXES.1e
@@ -224,7 +224,7 @@
mere warnings. Thanks to Martijn Dekker <martijn@inlv.org>.
January 5, 2020:
- Fix a bug in the concatentation of two string constants into
+ Fix a bug in the concatenation of two string constants into
one done in the grammar. Fixes GitHub issue #61. Thanks
to GitHub user awkfan77 for pointing out the direction for
the fix. New test T.concat added to the test suite.
@@ -866,7 +866,7 @@
added a few (int) casts to silence useless compiler warnings.
e.g., errorflag= in run.c jump().
- added proctab.c to the bundle outout; one less thing
+ added proctab.c to the bundle output; one less thing
to have to compile out of the box.
added calls to _popen and _pclose to the win95 stub for
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@
points are not necessarily characters.
UTF-8 sequences may appear in literal strings and regular expressions.
-Aribtrary characters may be included with `\u` followed by 1 to 8 hexadecimal digits.
+Arbitrary characters may be included with `\u` followed by 1 to 8 hexadecimal digits.
### Regular expressions ###
--- a/bugs-fixed/ofs-rebuild.awk
+++ b/bugs-fixed/ofs-rebuild.awk
@@ -10,7 +10,7 @@
# Change OFS after (conceptually) rebuilding the record
OFS = "<>"
- # Unmodifed nawk prints "a<>b<>3333<>d<>e<>f<>g" because
+ # Unmodified nawk prints "a<>b<>3333<>d<>e<>f<>g" because
# it delays rebuilding $0 until it's needed, and then it uses
# the current value of OFS. Oops.
--- a/lex.c
+++ b/lex.c
@@ -216,7 +216,7 @@
;
unput(c);
/*
- * Next line is a hack, itcompensates for
+ * Next line is a hack, it compensates for
* unput's treatment of \n.
*/
lineno++;
--- a/testdir/T.csconcat
+++ b/testdir/T.csconcat
@@ -1,4 +1,4 @@
-echo T.csconcat: test constant string concatentation
+echo T.csconcat: test constant string concatenation
awk=${awk-../a.out}--
⑨