summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd T. Fries <todd@cvs.openbsd.org>1997-11-15 21:51:34 +0000
committerTodd T. Fries <todd@cvs.openbsd.org>1997-11-15 21:51:34 +0000
commit9884a4e00c5657b271d46b377d552a0131f751e6 (patch)
tree0e881002779f355f1ac806db847601d26a458929
parenta4bbc1ba8bb5cd669465805bc531052ff058b9fc (diff)
spelling
-rw-r--r--bin/csh/USD.doc/csh.18
-rw-r--r--bin/csh/USD.doc/csh.214
-rw-r--r--bin/csh/USD.doc/csh.g10
-rw-r--r--bin/csh/csh.14
-rw-r--r--bin/csh/csh.c6
-rw-r--r--bin/csh/csh.h8
-rw-r--r--bin/csh/error.c6
-rw-r--r--bin/csh/exec.c6
-rw-r--r--bin/csh/file.c6
-rw-r--r--bin/csh/func.c6
-rw-r--r--bin/csh/set.c10
-rw-r--r--bin/csh/time.c8
12 files changed, 46 insertions, 46 deletions
diff --git a/bin/csh/USD.doc/csh.1 b/bin/csh/USD.doc/csh.1
index 72e2a967aa4..c2bec2e2f38 100644
--- a/bin/csh/USD.doc/csh.1
+++ b/bin/csh/USD.doc/csh.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: csh.1,v 1.2 1996/06/23 14:19:35 deraadt Exp $
+.\" $OpenBSD: csh.1,v 1.3 1997/11/15 21:51:32 todd Exp $
.\" $NetBSD: csh.1,v 1.3 1995/03/21 09:03:33 cgd Exp $
.\"
.\" Copyright (c) 1980, 1993
@@ -222,7 +222,7 @@ The shell then executed the
program with argument
.I bill
and went dormant waiting for it to complete.
-The mail program then read input from our terminal until we signalled
+The mail program then read input from our terminal until we signaled
an end-of-file via typing a ^D after which the shell noticed
that mail had completed
and signaled us that it was ready to read from the terminal again by
@@ -953,8 +953,8 @@ more /etc/passwd
.DE
The
.I more
-program pauses after each complete screenful and types `\-\-More\-\-'
-at which point you can hit a space to get another screenful, a return
+program pauses after each complete screen-full and types `\-\-More\-\-'
+at which point you can hit a space to get another screen full, a return
to get another line, a `?' to get some help on other commands, or a `q' to end the
.I more
program. You can also use more as a filter, i.e.
diff --git a/bin/csh/USD.doc/csh.2 b/bin/csh/USD.doc/csh.2
index d5ccf9aa797..aa9e6780353 100644
--- a/bin/csh/USD.doc/csh.2
+++ b/bin/csh/USD.doc/csh.2
@@ -1,4 +1,4 @@
-.\" $OpenBSD: csh.2,v 1.2 1996/06/23 14:19:36 deraadt Exp $
+.\" $OpenBSD: csh.2,v 1.3 1997/11/15 21:51:32 todd Exp $
.\" $NetBSD: csh.2,v 1.3 1995/03/21 09:03:35 cgd Exp $
.\"
.\" Copyright (c) 1980, 1993
@@ -678,7 +678,7 @@ which can be used later to refer to the job in the commands described below.
Job numbers remain
the same until the job terminates and then are re-used.
.PP
-When a job is started in the backgound using `&', its number, as well
+When a job is started in the background using `&', its number, as well
as the process numbers of all its (top level) commands, is typed by the shell
before prompting you for another command. For example,
.DS
@@ -692,7 +692,7 @@ file `usage'.
Since the `&' was at the end of the line, these two programs were started
together as a background job. After starting the job, the shell prints
the job number in brackets (2 in this case) followed by the process number
-of each program started in the job. Then the shell immediates prompts for
+of each program started in the job. Then the shell immediately prompts for
a new command, leaving the job running simultaneously.
.PP
As mentioned in section 1.8, foreground jobs become
@@ -703,7 +703,7 @@ foreground job. A background job can become suspended by using the
.I stop
command described below. When jobs are suspended they merely stop
any further progress until started again, either in the foreground
-or the backgound. The shell notices when a job becomes stopped and
+or the background. The shell notices when a job becomes stopped and
reports this fact, much like it reports the termination of background jobs.
For foreground jobs this looks like
.DS
@@ -746,7 +746,7 @@ starts `du' in the foreground, stops it before it finishes, then continues
it in the background allowing more foreground commands to be executed.
This is especially helpful
when a foreground job ends up taking longer than you expected and you
-wish you had started it in the backgound in the beginning.
+wish you had started it in the background in the beginning.
.PP
All
.I "job control"
@@ -779,7 +779,7 @@ in only one of the jobs.
The
.I jobs
command types the table of jobs, giving the job number,
-commands and status (`Stopped' or `Running') of each backgound or
+commands and status (`Stopped' or `Running') of each background or
suspended job. With the `\-l' option the process numbers are also
typed.
.DS
@@ -878,7 +878,7 @@ and then put in the background using
Some time later when the `s' command was finished,
.I ed
tried to read another command and was stopped because jobs
-in the backgound cannot read from the terminal. The
+in the background cannot read from the terminal. The
.I fg
command returned the `ed' job to the foreground where it could once again
accept commands from the terminal.
diff --git a/bin/csh/USD.doc/csh.g b/bin/csh/USD.doc/csh.g
index fbe9c248e03..5f8aad2e8a6 100644
--- a/bin/csh/USD.doc/csh.g
+++ b/bin/csh/USD.doc/csh.g
@@ -1,4 +1,4 @@
-.\" $OpenBSD: csh.g,v 1.2 1996/06/23 14:19:40 deraadt Exp $
+.\" $OpenBSD: csh.g,v 1.3 1997/11/15 21:51:33 todd Exp $
.\" $NetBSD: csh.g,v 1.3 1995/03/21 09:03:42 cgd Exp $
.\"
.\" Copyright (c) 1980, 1993
@@ -236,7 +236,7 @@ Details are given in the shell documentation `csh (1)' (3.7).
.IP cat
The
.I cat
-program catenates a list of specified files on the
+program concatenates a list of specified files on the
.I "standard output" .
It is usually used to look at the contents of a single file on the terminal,
to `cat a file' (1.8, 2.3).
@@ -428,7 +428,7 @@ An error message produced by a program is often referred to as a
Most error messages are not written to the
.I "standard output" ,
since that is often directed away from the terminal (1.3, 1.5).
-Error messsages are instead written to the
+Error messages are instead written to the
.I "diagnostic output"
which may be directed away from the terminal, but usually is not.
Thus
@@ -1058,7 +1058,7 @@ The program
writes a file on your terminal allowing you to control how much text
is displayed at a time.
.I More
-can move through the file screenful by screenful, line by line,
+can move through the file screen-full by screen-full, line by line,
search forward for a string, or start again at the beginning of the file.
It is generally the easiest way of viewing a file (1.8).
.IP noclobber
@@ -1508,7 +1508,7 @@ The shell variable
is set to the
.I status
returned by the last command.
-It is most useful in shell commmand scripts (3.6).
+It is most useful in shell command scripts (3.6).
.IP stop
The
.I stop
diff --git a/bin/csh/csh.1 b/bin/csh/csh.1
index 465515f4253..62e09e89845 100644
--- a/bin/csh/csh.1
+++ b/bin/csh/csh.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: csh.1,v 1.4 1997/05/30 09:12:49 deraadt Exp $
+.\" $OpenBSD: csh.1,v 1.5 1997/11/15 21:51:26 todd Exp $
.\" $NetBSD: csh.1,v 1.10 1995/03/21 09:02:35 cgd Exp $
.\"
.\" Copyright (c) 1980, 1990, 1993
@@ -818,7 +818,7 @@ only part of a word, even if the command outputs a complete line.
.Ss Filename substitution
If a word contains any of the characters `*', `?', `[' or `{'
or begins with the character `~', then that word is a candidate for
-filename substitution, also known as `globbing'.
+filename substitution, also known as `gobbing'.
This word is then regarded as a pattern, and replaced with an alphabetically
sorted list of file names that match the pattern.
In a list of words specifying filename substitution it is an error for
diff --git a/bin/csh/csh.c b/bin/csh/csh.c
index 92c910d4c97..c08d353af76 100644
--- a/bin/csh/csh.c
+++ b/bin/csh/csh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: csh.c,v 1.8 1997/08/05 22:22:51 deraadt Exp $ */
+/* $OpenBSD: csh.c,v 1.9 1997/11/15 21:51:27 todd Exp $ */
/* $NetBSD: csh.c,v 1.14 1995/04/29 23:21:28 mycroft Exp $ */
/*-
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)csh.c 8.2 (Berkeley) 10/12/93";
#else
-static char rcsid[] = "$OpenBSD: csh.c,v 1.8 1997/08/05 22:22:51 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: csh.c,v 1.9 1997/11/15 21:51:27 todd Exp $";
#endif
#endif /* not lint */
@@ -1238,7 +1238,7 @@ gethdir(home)
/*
* When didfds is set, we do I/O from 0, 1, 2 otherwise from 15, 16, 17
- * We also check if the shell has already changed the decriptor to point to
+ * We also check if the shell has already changed the descriptor to point to
* 0, 1, 2 when didfds is set.
*/
#define DESC(a) (*((int *) (a)) - (didfds && *((int *) a) >= FSHIN ? FSHIN : 0))
diff --git a/bin/csh/csh.h b/bin/csh/csh.h
index a1911ce6161..12b47b5ac19 100644
--- a/bin/csh/csh.h
+++ b/bin/csh/csh.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: csh.h,v 1.3 1997/09/22 05:09:13 millert Exp $ */
+/* $OpenBSD: csh.h,v 1.4 1997/11/15 21:51:28 todd Exp $ */
/* $NetBSD: csh.h,v 1.9 1995/03/21 09:02:40 cgd Exp $ */
/*-
@@ -263,8 +263,8 @@ extern int aret; /* What was the last character returned */
#define fbuf B.Bfbuf
/*
- * The shell finds commands in loops by reseeking the input
- * For whiles, in particular, it reseeks to the beginning of the
+ * The shell finds commands in loops by re-seeking the input
+ * For whiles, in particular, it re-seeks to the beginning of the
* line the while was on; hence the while placement restrictions.
*/
struct Ain lineloc;
@@ -308,7 +308,7 @@ Char *lap;
*
* Each command is parsed to a tree of command structures and
* flags are set bottom up during this process, to be propagated down
- * as needed during the semantics/exeuction pass (sh.sem.c).
+ * as needed during the semantics/execution pass (sh.sem.c).
*/
struct command {
short t_dtyp; /* Type of node */
diff --git a/bin/csh/error.c b/bin/csh/error.c
index 0900bfa5c20..a6edb98a91a 100644
--- a/bin/csh/error.c
+++ b/bin/csh/error.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: error.c,v 1.1 1997/09/22 05:09:14 millert Exp $ */
+/* $OpenBSD: error.c,v 1.2 1997/11/15 21:51:28 todd Exp $ */
/* $NetBSD: err.c,v 1.6 1995/03/21 09:02:47 cgd Exp $ */
/*-
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)err.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$OpenBSD: error.c,v 1.1 1997/09/22 05:09:14 millert Exp $";
+static char rcsid[] = "$OpenBSD: error.c,v 1.2 1997/11/15 21:51:28 todd Exp $";
#endif
#endif /* not lint */
@@ -330,7 +330,7 @@ seterror(id, va_alist)
* in bname
*
* This routine always resets or exits. The flag haderr
- * is set so the routine who catches the unwind can propogate
+ * is set so the routine who catches the unwind can propagate
* it if they want.
*
* Note that any open files at the point of error will eventually
diff --git a/bin/csh/exec.c b/bin/csh/exec.c
index cdd2a95a20a..636b63979a5 100644
--- a/bin/csh/exec.c
+++ b/bin/csh/exec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: exec.c,v 1.4 1997/07/25 18:58:04 mickey Exp $ */
+/* $OpenBSD: exec.c,v 1.5 1997/11/15 21:51:29 todd Exp $ */
/* $NetBSD: exec.c,v 1.9 1996/09/30 20:03:54 christos Exp $ */
/*-
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)exec.c 8.3 (Berkeley) 5/23/95";
#else
-static char rcsid[] = "$OpenBSD: exec.c,v 1.4 1997/07/25 18:58:04 mickey Exp $";
+static char rcsid[] = "$OpenBSD: exec.c,v 1.5 1997/11/15 21:51:29 todd Exp $";
#endif
#endif /* not lint */
@@ -579,7 +579,7 @@ cont:
* executable() examines the pathname obtained by concatenating dir and name
* (dir may be NULL), and returns 1 either if it is executable by us, or
* if dir_ok is set and the pathname refers to a directory.
- * This is a bit kludgy, but in the name of optimization...
+ * This is a bit kludgey, but in the name of optimization...
*/
static int
executable(dir, name, dir_ok)
diff --git a/bin/csh/file.c b/bin/csh/file.c
index 3864281000b..7a79aad217c 100644
--- a/bin/csh/file.c
+++ b/bin/csh/file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.c,v 1.4 1997/07/25 18:58:06 mickey Exp $ */
+/* $OpenBSD: file.c,v 1.5 1997/11/15 21:51:29 todd Exp $ */
/* $NetBSD: file.c,v 1.11 1996/11/08 19:34:37 christos Exp $ */
/*-
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)file.c 8.2 (Berkeley) 3/19/94";
#else
-static char rcsid[] = "$OpenBSD: file.c,v 1.4 1997/07/25 18:58:06 mickey Exp $";
+static char rcsid[] = "$OpenBSD: file.c,v 1.5 1997/11/15 21:51:29 todd Exp $";
#endif
#endif /* not lint */
@@ -642,7 +642,7 @@ tenex(inputline, inputline_size)
--str_end; /* wipeout trailing cmd Char */
*str_end = '\0';
/*
- * Find LAST occurence of a delimiter in the inputline. The word start
+ * Find LAST occurrence of a delimiter in the inputline. The word start
* is one Character past it.
*/
for (word_start = str_end; word_start > inputline; --word_start)
diff --git a/bin/csh/func.c b/bin/csh/func.c
index 7db05f15ba5..0b356bbdd2e 100644
--- a/bin/csh/func.c
+++ b/bin/csh/func.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: func.c,v 1.6 1997/07/25 18:58:07 mickey Exp $ */
+/* $OpenBSD: func.c,v 1.7 1997/11/15 21:51:30 todd Exp $ */
/* $NetBSD: func.c,v 1.11 1996/02/09 02:28:29 christos Exp $ */
/*-
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)func.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$OpenBSD: func.c,v 1.6 1997/07/25 18:58:07 mickey Exp $";
+static char rcsid[] = "$OpenBSD: func.c,v 1.7 1997/11/15 21:51:30 todd Exp $";
#endif
#endif /* not lint */
@@ -1417,7 +1417,7 @@ retry:
/* This is the dreaded EVAL built-in.
* If you don't fiddle with file descriptors, and reset didfds,
* this command will either ignore redirection inside or outside
- * its aguments, e.g. eval "date >x" vs. eval "date" >x
+ * its arguments, e.g. eval "date >x" vs. eval "date" >x
* The stuff here seems to work, but I did it by trial and error rather
* than really knowing what was going on. If tpgrp is zero, we are
* probably a background eval, e.g. "eval date &", and we want to
diff --git a/bin/csh/set.c b/bin/csh/set.c
index 47649f55833..4ffb811b04b 100644
--- a/bin/csh/set.c
+++ b/bin/csh/set.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: set.c,v 1.3 1997/07/25 18:58:17 mickey Exp $ */
+/* $OpenBSD: set.c,v 1.4 1997/11/15 21:51:30 todd Exp $ */
/* $NetBSD: set.c,v 1.8 1995/03/21 18:35:52 mycroft Exp $ */
/*-
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)set.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$OpenBSD: set.c,v 1.3 1997/07/25 18:58:17 mickey Exp $";
+static char rcsid[] = "$OpenBSD: set.c,v 1.4 1997/11/15 21:51:30 todd Exp $";
#endif
#endif /* not lint */
@@ -168,7 +168,7 @@ doset(v, t)
cp = Strsave(value(vp)); /* get the old value back */
/*
- * convert to cononical pathname (possibly resolving symlinks)
+ * convert to canonical pathname (possibly resolving symlinks)
*/
cp = dcanon(cp, cp);
@@ -746,7 +746,7 @@ balance(p, f, d)
break;
case 1: /* was already right heavy */
switch (p->v_right->v_bal) {
- case 1: /* sigle rotate */
+ case 1: /* single rotate */
pp->v_link[ff] = rleft(p);
p->v_left->v_bal = 0;
p->v_bal = 0;
@@ -784,7 +784,7 @@ balance(p, f, d)
p->v_right->v_bal = 0;
p->v_bal = 0;
break;
- case 0: /* signle rotate */
+ case 0: /* single rotate */
pp->v_link[ff] = rright(p);
p->v_right->v_bal = -1;
p->v_bal = 1;
diff --git a/bin/csh/time.c b/bin/csh/time.c
index 21654933e15..6ed8c3edc12 100644
--- a/bin/csh/time.c
+++ b/bin/csh/time.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: time.c,v 1.4 1997/07/25 18:58:19 mickey Exp $ */
+/* $OpenBSD: time.c,v 1.5 1997/11/15 21:51:31 todd Exp $ */
/* $NetBSD: time.c,v 1.7 1995/03/21 13:55:25 mycroft Exp $ */
/*-
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)time.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$OpenBSD: time.c,v 1.4 1997/07/25 18:58:19 mickey Exp $";
+static char rcsid[] = "$OpenBSD: time.c,v 1.5 1997/11/15 21:51:31 todd Exp $";
#endif
#endif /* not lint */
@@ -221,7 +221,7 @@ prusage(r0, r1, e, b)
(void) fprintf(cshout, "%ld", r1->ru_oublock - r0->ru_oublock);
break;
- case 'r': /* socket messages recieved */
+ case 'r': /* socket messages received */
(void) fprintf(cshout, "%ld", r1->ru_msgrcv - r0->ru_msgrcv);
break;
@@ -229,7 +229,7 @@ prusage(r0, r1, e, b)
(void) fprintf(cshout, "%ld", r1->ru_msgsnd - r0->ru_msgsnd);
break;
- case 'k': /* number of signals recieved */
+ case 'k': /* number of signals received */
(void) fprintf(cshout, "%ld", r1->ru_nsignals-r0->ru_nsignals);
break;