diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 1997-11-15 22:01:07 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 1997-11-15 22:01:07 +0000 |
commit | b0061da962c970149503f7411871f39aeb347f0a (patch) | |
tree | 3c61fe39fd624e0fed3925c473de6d3671c18016 | |
parent | 9884a4e00c5657b271d46b377d552a0131f751e6 (diff) |
slipped through the cracks.
-rw-r--r-- | bin/csh/csh.1 | 4 | ||||
-rw-r--r-- | bin/csh/exec.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/bin/csh/csh.1 b/bin/csh/csh.1 index 62e09e89845..8c6247c00bd 100644 --- a/bin/csh/csh.1 +++ b/bin/csh/csh.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: csh.1,v 1.5 1997/11/15 21:51:26 todd Exp $ +.\" $OpenBSD: csh.1,v 1.6 1997/11/15 22:01:06 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 `gobbing'. +filename substitution, also known as `globbing'. 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/exec.c b/bin/csh/exec.c index 636b63979a5..3c46513b422 100644 --- a/bin/csh/exec.c +++ b/bin/csh/exec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec.c,v 1.5 1997/11/15 21:51:29 todd Exp $ */ +/* $OpenBSD: exec.c,v 1.6 1997/11/15 22:01:06 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.5 1997/11/15 21:51:29 todd Exp $"; +static char rcsid[] = "$OpenBSD: exec.c,v 1.6 1997/11/15 22:01:06 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 kludgey, but in the name of optimization... + * This is a bit kludgy, but in the name of optimization... */ static int executable(dir, name, dir_ok) |