summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDavid Krause <david@cvs.openbsd.org>2003-03-10 03:48:17 +0000
committerDavid Krause <david@cvs.openbsd.org>2003-03-10 03:48:17 +0000
commit3b9bf8ae609376937da44cf47d2c60d2779df46f (patch)
tree5455f6d3f2aa50f84975dff2845d8bf9ab170dac /bin
parent21508a0f099fd335ee83836ed498be90c10a67b8 (diff)
spelling fixes
ok millert@
Diffstat (limited to 'bin')
-rw-r--r--bin/ksh/ChangeLog4
-rw-r--r--bin/ksh/README4
-rw-r--r--bin/ksh/eval.c4
-rw-r--r--bin/ksh/io.c4
-rw-r--r--bin/ksh/main.c4
-rw-r--r--bin/ksh/tests/read.t4
-rw-r--r--bin/ksh/tests/th4
7 files changed, 14 insertions, 14 deletions
diff --git a/bin/ksh/ChangeLog b/bin/ksh/ChangeLog
index 9b5962597f0..d700b4ae7fd 100644
--- a/bin/ksh/ChangeLog
+++ b/bin/ksh/ChangeLog
@@ -210,7 +210,7 @@ Tue Jan 12 12:28:41 NST 1999 Michael Rendell (michael@panda.cs.mun.ca)
* sh.h: OS2: changed EXECSHELL, EXECSHELL_STR.
* jobs.c(exchild): set XINTACT.
* os2/config.h: added HAVE_TERMIOS_H.
- * os2/configure.cmd: changed test for existance of sed & gcc.
+ * os2/configure.cmd: changed test for existence of sed & gcc.
Fixes from Ilya Zakharevich.
@@ -527,7 +527,7 @@ Wed Oct 30 11:23:17 NST 1996 Michael Rendell (michael@panda.cs.mun.ca)
* exec.c(comexec): case CFUNC: set $0 to kshname if non-function
function.
-$OpenBSD: ChangeLog,v 1.13 2003/02/28 09:45:09 jmc Exp $
+$OpenBSD: ChangeLog,v 1.14 2003/03/10 03:48:16 david Exp $
Tue Oct 29 11:34:58 NST 1996 Michael Rendell (michael@panda.cs.mun.ca)
diff --git a/bin/ksh/README b/bin/ksh/README
index 315ecfddafa..48e3fae0d43 100644
--- a/bin/ksh/README
+++ b/bin/ksh/README
@@ -1,4 +1,4 @@
-$OpenBSD: README,v 1.9 1999/07/14 13:37:23 millert Exp $
+$OpenBSD: README,v 1.10 2003/03/10 03:48:16 david Exp $
Last updated Jul '99 for pdksh-5.2.14.
(check ftp://ftp.cs.mun.ca:/pub/pdksh/ or
@@ -147,7 +147,7 @@ The following is a list of machines that pdksh is reported to work on:
-/PC Interactive/Sunsoft 3.0.1 and 4.1 (note that problems have been
reported with isc3.2 - see the BUG-REPORTS file)
-/PC OS/2
- Commadore/Amiga NetBSD 1.0
+ Commodore/Amiga NetBSD 1.0
Dec/alpha OSF/1 v2.x, v3.x
Dec/alpha NetBSD 1.1B
Dec/pmax Ultrix 4.2
diff --git a/bin/ksh/eval.c b/bin/ksh/eval.c
index fea8cc0c4fc..2a0990ae26e 100644
--- a/bin/ksh/eval.c
+++ b/bin/ksh/eval.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: eval.c,v 1.11 2003/02/28 09:45:09 jmc Exp $ */
+/* $OpenBSD: eval.c,v 1.12 2003/03/10 03:48:16 david Exp $ */
/*
* Expansion - quoting, separation, substitution, globbing
@@ -957,7 +957,7 @@ glob(cp, wp, markdirs)
}
#define GF_NONE 0
-#define GF_EXCHECK BIT(0) /* do existance check on file */
+#define GF_EXCHECK BIT(0) /* do existence check on file */
#define GF_GLOBBED BIT(1) /* some globbing has been done */
#define GF_MARKDIR BIT(2) /* add trailing / to directories */
diff --git a/bin/ksh/io.c b/bin/ksh/io.c
index 0516a16edb3..283488656a5 100644
--- a/bin/ksh/io.c
+++ b/bin/ksh/io.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: io.c,v 1.11 2002/06/09 05:47:27 todd Exp $ */
+/* $OpenBSD: io.c,v 1.12 2003/03/10 03:48:16 david Exp $ */
/*
* shell buffered IO and formatted output
@@ -452,7 +452,7 @@ coproc_write_close(fd)
}
}
-/* Called to check for existance of/value of the co-process file descriptor.
+/* Called to check for existence of/value of the co-process file descriptor.
* (Used by check_fd() and by c_read/c_print to deal with -p option).
*/
int
diff --git a/bin/ksh/main.c b/bin/ksh/main.c
index a4afdcabf22..d6af9466575 100644
--- a/bin/ksh/main.c
+++ b/bin/ksh/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.22 2003/02/28 09:45:09 jmc Exp $ */
+/* $OpenBSD: main.c,v 1.23 2003/03/10 03:48:16 david Exp $ */
/*
* startup, main loop, environments and error handling
@@ -180,7 +180,7 @@ main(argc, argv)
/* Turn on nohup by default for how - will change to off
- * by default once people are aware of its existance
+ * by default once people are aware of its existence
* (at&t ksh does not have a nohup option - it always sends
* the hup).
*/
diff --git a/bin/ksh/tests/read.t b/bin/ksh/tests/read.t
index ca7e3574a81..5f1b28ea119 100644
--- a/bin/ksh/tests/read.t
+++ b/bin/ksh/tests/read.t
@@ -1,4 +1,4 @@
-# $OpenBSD: read.t,v 1.2 2001/01/28 23:04:56 niklas Exp $
+# $OpenBSD: read.t,v 1.3 2003/03/10 03:48:16 david Exp $
#
# To test:
@@ -13,7 +13,7 @@
# - a here-document isn't terminated after newline ????
# - remaining vars set to empty string (not null)
# - check field splitting
-# - left over fields and their seperators assigned to last var
+# - left over fields and their separators assigned to last var
# - exit status is normally 0
# - exit status is > 0 on eof
# - exit status > 0 on error
diff --git a/bin/ksh/tests/th b/bin/ksh/tests/th
index e1109882507..a8ef7a97163 100644
--- a/bin/ksh/tests/th
+++ b/bin/ksh/tests/th
@@ -1,5 +1,5 @@
#!/usr/local/bin/perl
-# $OpenBSD: th,v 1.8 2001/01/28 23:04:56 niklas Exp $
+# $OpenBSD: th,v 1.9 2003/03/10 03:48:16 david Exp $
#
@@ -124,7 +124,7 @@
# - empty: the initial blank line is stripped.
# - a lone !: the last newline in the value is stripped;
# M value can be multiple lines (prefixed by a tab) and consists
-# of multiple fields, delimited by a field seperator character.
+# of multiple fields, delimited by a field separator character.
# The value must start and end with the f-s-c.
# p tag takes parameters (used with m).
# s tag can be used several times.