diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-04-14 17:51:38 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-04-14 17:51:38 +0000 |
commit | aff114c33d2b8879233fa513e6d760d0ef99b632 (patch) | |
tree | 101230a8bd16a03319acc4b9b5fb33c33fb58672 /editors/awk.c | |
parent | 4c8b0dd97385b820e28bb8cb2d08ef3bd194a16a (diff) | |
download | busybox-w32-aff114c33d2b8879233fa513e6d760d0ef99b632.tar.gz busybox-w32-aff114c33d2b8879233fa513e6d760d0ef99b632.tar.bz2 busybox-w32-aff114c33d2b8879233fa513e6d760d0ef99b632.zip |
Larry Doolittle writes:
This is a bulk spelling fix patch against busybox-1.00-pre10.
If anyone gets a corrupted copy (and cares), let me know and
I will make alternate arrangements.
Erik - please apply.
Authors - please check that I didn't corrupt any meaning.
Package importers - see if any of these changes should be
passed to the upstream authors.
I glossed over lots of sloppy capitalizations, missing apostrophes,
mixed American/British spellings, and German-style compound words.
What is "pretect redefined for test" in cmdedit.c?
Good luck on the 1.00 release!
- Larry
Diffstat (limited to 'editors/awk.c')
-rw-r--r-- | editors/awk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/awk.c b/editors/awk.c index cb74a9832..9905be092 100644 --- a/editors/awk.c +++ b/editors/awk.c | |||
@@ -784,7 +784,7 @@ static int istrue(var *v) { | |||
784 | return (v->string && *(v->string)) ? 1 : 0; | 784 | return (v->string && *(v->string)) ? 1 : 0; |
785 | } | 785 | } |
786 | 786 | ||
787 | /* temporary varables allocator. Last allocated should be first freed */ | 787 | /* temporary variables allocator. Last allocated should be first freed */ |
788 | static var *nvalloc(int n) { | 788 | static var *nvalloc(int n) { |
789 | 789 | ||
790 | nvblock *pb = NULL; | 790 | nvblock *pb = NULL; |
@@ -1386,7 +1386,7 @@ static node *mk_splitter(char *s, tsplitter *spl) { | |||
1386 | } | 1386 | } |
1387 | 1387 | ||
1388 | /* use node as a regular expression. Supplied with node ptr and regex_t | 1388 | /* use node as a regular expression. Supplied with node ptr and regex_t |
1389 | * storage space. Return ptr to regex (if result points to preg, it shuold | 1389 | * storage space. Return ptr to regex (if result points to preg, it should |
1390 | * be later regfree'd manually | 1390 | * be later regfree'd manually |
1391 | */ | 1391 | */ |
1392 | static regex_t *as_regex(node *op, regex_t *preg) { | 1392 | static regex_t *as_regex(node *op, regex_t *preg) { |