diff options
| author | simonb <simonb@NetBSD.org> | 2004-04-23 02:58:27 +0000 |
|---|---|---|
| committer | simonb <simonb@NetBSD.org> | 2004-04-23 02:58:27 +0000 |
| commit | 9bc855a9318a0a67f86e978bdd66366e2786b5ef (patch) | |
| tree | 5ad22dd973d299d05210905342892ed44925baa8 /lib | |
| parent | ba5d7d507ca5f52f1ee68ed0c1a8527c58d07c9d (diff) | |
s/the the/the/ (only in sources that aren't regularly imported from
elsewhere).
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libc/gen/pwcache.c | 8 | ||||
| -rw-r--r-- | lib/libc/gen/sysconf.3 | 4 | ||||
| -rw-r--r-- | lib/libcurses/curses_color.3 | 4 | ||||
| -rw-r--r-- | lib/libform/type_alnum.c | 4 | ||||
| -rw-r--r-- | lib/libform/type_alpha.c | 6 | ||||
| -rw-r--r-- | lib/libform/type_enum.c | 6 | ||||
| -rw-r--r-- | lib/libform/type_integer.c | 6 | ||||
| -rw-r--r-- | lib/libform/type_numeric.c | 6 | ||||
| -rw-r--r-- | lib/libform/type_regex.c | 6 | ||||
| -rw-r--r-- | lib/libpthread/arch/i386/pthread_switch.S | 4 | ||||
| -rw-r--r-- | lib/libpthread/arch/m68k/pthread_switch.S | 4 | ||||
| -rw-r--r-- | lib/libpthread/arch/x86_64/pthread_switch.S | 4 | ||||
| -rw-r--r-- | lib/libterm/termcap.3 | 4 |
13 files changed, 33 insertions, 33 deletions
diff --git a/lib/libc/gen/pwcache.c b/lib/libc/gen/pwcache.c index fff35148861..57f6db4a83b 100644 --- a/lib/libc/gen/pwcache.c +++ b/lib/libc/gen/pwcache.c @@ -1,4 +1,4 @@ -/* $NetBSD: pwcache.c,v 1.25 2003/10/13 07:41:22 agc Exp $ */ +/* $NetBSD: pwcache.c,v 1.26 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1992 Keith Muller. @@ -71,7 +71,7 @@ #if 0 static char sccsid[] = "@(#)cache.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: pwcache.c,v 1.25 2003/10/13 07:41:22 agc Exp $"); +__RCSID("$NetBSD: pwcache.c,v 1.26 2004/04/23 02:58:27 simonb Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -244,7 +244,7 @@ grptb_start(void) /* * user_from_uid() * caches the name (if any) for the uid. If noname clear, we always - * return the the stored name (if valid or invalid match). + * return the stored name (if valid or invalid match). * We use a simple hash table. * Return * Pointer to stored name (or a empty string) @@ -314,7 +314,7 @@ user_from_uid(uid_t uid, int noname) /* * group_from_gid() * caches the name (if any) for the gid. If noname clear, we always - * return the the stored name (if valid or invalid match). + * return the stored name (if valid or invalid match). * We use a simple hash table. * Return * Pointer to stored name (or a empty string) diff --git a/lib/libc/gen/sysconf.3 b/lib/libc/gen/sysconf.3 index 90a7ab0f2b8..aa2ef4119bc 100644 --- a/lib/libc/gen/sysconf.3 +++ b/lib/libc/gen/sysconf.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: sysconf.3,v 1.29 2003/08/07 16:42:57 agc Exp $ +.\" $NetBSD: sysconf.3,v 1.30 2004/04/23 02:58:27 simonb Exp $ .\" .\" Copyright (c) 1993 .\" The Regents of the University of California. All rights reserved. @@ -178,7 +178,7 @@ otherwise \-1. The version of ISO/IEC 9945 (POSIX 1003.1) with which the system attempts to comply. .It Li _SC_XOPEN_SHM -Return 1 if the the +Return 1 if the .St -xpg4.2 Shared Memory option is available on this system, diff --git a/lib/libcurses/curses_color.3 b/lib/libcurses/curses_color.3 index 035e2b3ecd9..3904c022b9b 100644 --- a/lib/libcurses/curses_color.3 +++ b/lib/libcurses/curses_color.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: curses_color.3,v 1.9 2004/03/16 10:58:25 wiz Exp $ +.\" $NetBSD: curses_color.3,v 1.10 2004/04/23 02:58:27 simonb Exp $ .\" Copyright (c) 2002 The NetBSD Foundation, Inc. .\" All rights reserved. .\" @@ -154,7 +154,7 @@ Color-pair 0 is used as the default color pair, so changing this will have no effect. Use the function .Fn assume_default_colors -to change the the default colors. +to change the default colors. .Pp The function .Fn pair_content pair *fore *back diff --git a/lib/libform/type_alnum.c b/lib/libform/type_alnum.c index 0e2dfad15cd..b5eea1e70df 100644 --- a/lib/libform/type_alnum.c +++ b/lib/libform/type_alnum.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_alnum.c,v 1.6 2001/06/13 10:45:59 wiz Exp $ */ +/* $NetBSD: type_alnum.c,v 1.7 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -63,7 +63,7 @@ create_alnum_args(va_list *args) } /* - * Copy the the alnum argument structure. + * Copy the alnum argument structure. */ static char * copy_alnum_args(char *args) diff --git a/lib/libform/type_alpha.c b/lib/libform/type_alpha.c index f0df0cfee81..48862d7d564 100644 --- a/lib/libform/type_alpha.c +++ b/lib/libform/type_alpha.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_alpha.c,v 1.7 2003/03/09 00:57:19 lukem Exp $ */ +/* $NetBSD: type_alpha.c,v 1.8 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: type_alpha.c,v 1.7 2003/03/09 00:57:19 lukem Exp $"); +__RCSID("$NetBSD: type_alpha.c,v 1.8 2004/04/23 02:58:27 simonb Exp $"); #include <stdlib.h> #include <string.h> @@ -65,7 +65,7 @@ create_alpha_args(va_list *args) } /* - * Copy the the alpha argument structure. + * Copy the alpha argument structure. */ static char * copy_alpha_args(char *args) diff --git a/lib/libform/type_enum.c b/lib/libform/type_enum.c index e30e63183f3..f1a31d02336 100644 --- a/lib/libform/type_enum.c +++ b/lib/libform/type_enum.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_enum.c,v 1.8 2004/03/22 18:59:48 jdc Exp $ */ +/* $NetBSD: type_enum.c,v 1.9 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: type_enum.c,v 1.8 2004/03/22 18:59:48 jdc Exp $"); +__RCSID("$NetBSD: type_enum.c,v 1.9 2004/04/23 02:58:27 simonb Exp $"); #include <ctype.h> #include <stdlib.h> @@ -125,7 +125,7 @@ create_enum_args(va_list *args) } /* - * Copy the the enum argument structure. + * Copy the enum argument structure. */ static char * copy_enum_args(char *args) diff --git a/lib/libform/type_integer.c b/lib/libform/type_integer.c index bd6b37a0065..5c8dbfdc39f 100644 --- a/lib/libform/type_integer.c +++ b/lib/libform/type_integer.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_integer.c,v 1.5 2003/03/09 00:57:19 lukem Exp $ */ +/* $NetBSD: type_integer.c,v 1.6 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: type_integer.c,v 1.5 2003/03/09 00:57:19 lukem Exp $"); +__RCSID("$NetBSD: type_integer.c,v 1.6 2004/04/23 02:58:27 simonb Exp $"); #include <stdlib.h> #include <strings.h> @@ -70,7 +70,7 @@ create_integer_args(va_list *args) } /* - * Copy the the integer argument structure. + * Copy the integer argument structure. */ static char * copy_integer_args(char *args) diff --git a/lib/libform/type_numeric.c b/lib/libform/type_numeric.c index 84aa96d57c8..20a9a09af48 100644 --- a/lib/libform/type_numeric.c +++ b/lib/libform/type_numeric.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_numeric.c,v 1.5 2003/03/09 00:57:20 lukem Exp $ */ +/* $NetBSD: type_numeric.c,v 1.6 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: type_numeric.c,v 1.5 2003/03/09 00:57:20 lukem Exp $"); +__RCSID("$NetBSD: type_numeric.c,v 1.6 2004/04/23 02:58:27 simonb Exp $"); #include <stdlib.h> #include <string.h> @@ -70,7 +70,7 @@ create_numeric_args(va_list *args) } /* - * Copy the the numeric argument structure. + * Copy the numeric argument structure. */ static char * copy_numeric_args(char *args) diff --git a/lib/libform/type_regex.c b/lib/libform/type_regex.c index b85afa455bd..ae152dbc095 100644 --- a/lib/libform/type_regex.c +++ b/lib/libform/type_regex.c @@ -1,4 +1,4 @@ -/* $NetBSD: type_regex.c,v 1.5 2003/03/09 00:57:20 lukem Exp $ */ +/* $NetBSD: type_regex.c,v 1.6 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 1998-1999 Brett Lymn @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: type_regex.c,v 1.5 2003/03/09 00:57:20 lukem Exp $"); +__RCSID("$NetBSD: type_regex.c,v 1.6 2004/04/23 02:58:27 simonb Exp $"); #include <stdlib.h> #include <sys/types.h> @@ -74,7 +74,7 @@ create_regex_args(va_list *args) } /* - * Copy the the regex argument structure. + * Copy the regex argument structure. */ static char * copy_regex_args(char *args) diff --git a/lib/libpthread/arch/i386/pthread_switch.S b/lib/libpthread/arch/i386/pthread_switch.S index b1d626783fd..0edf27450b7 100644 --- a/lib/libpthread/arch/i386/pthread_switch.S +++ b/lib/libpthread/arch/i386/pthread_switch.S @@ -1,4 +1,4 @@ -/* $NetBSD: pthread_switch.S,v 1.7 2003/10/30 13:56:37 yamt Exp $ */ +/* $NetBSD: pthread_switch.S,v 1.8 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -82,7 +82,7 @@ * thread is stored near the top of the stack. When the kernel * preempts a thread, it stores the ucontext_t just above the current * top-of-stack and passes the upcall handler the pointer to the - * ucontext_t, and the upcall handler stores it in the the pt_uc field + * ucontext_t, and the upcall handler stores it in the pt_uc field * of the thread structure. When user-level code voluntairly switches * from one thread to another, the ucontext_t is just below the top of * the stack, and we impose a limit on the amount of stack space above diff --git a/lib/libpthread/arch/m68k/pthread_switch.S b/lib/libpthread/arch/m68k/pthread_switch.S index 0ad557cb2c8..933ff317522 100644 --- a/lib/libpthread/arch/m68k/pthread_switch.S +++ b/lib/libpthread/arch/m68k/pthread_switch.S @@ -1,4 +1,4 @@ -/* $NetBSD: pthread_switch.S,v 1.6 2003/09/17 20:08:07 cl Exp $ */ +/* $NetBSD: pthread_switch.S,v 1.7 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -85,7 +85,7 @@ * thread is stored near the top of the stack. When the kernel * preempts a thread, it stores the ucontext_t just above the current * top-of-stack and passes the upcall handler the pointer to the - * ucontext_t, and the upcall handler stores it in the the pt_uc field + * ucontext_t, and the upcall handler stores it in the pt_uc field * of the thread structure. When user-level code voluntairly switches * from one thread to another, the ucontext_t is just below the top of * the stack, and we impose a limit on the amount of stack space above diff --git a/lib/libpthread/arch/x86_64/pthread_switch.S b/lib/libpthread/arch/x86_64/pthread_switch.S index 708c01d08df..6e9c0864f53 100644 --- a/lib/libpthread/arch/x86_64/pthread_switch.S +++ b/lib/libpthread/arch/x86_64/pthread_switch.S @@ -1,4 +1,4 @@ -/* $NetBSD: pthread_switch.S,v 1.9 2003/11/08 21:46:42 fvdl Exp $ */ +/* $NetBSD: pthread_switch.S,v 1.10 2004/04/23 02:58:27 simonb Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -84,7 +84,7 @@ * thread is stored near the top of the stack. When the kernel * preempts a thread, it stores the ucontext_t just above the current * top-of-stack and passes the upcall handler the pointer to the - * ucontext_t, and the upcall handler stores it in the the pt_uc field + * ucontext_t, and the upcall handler stores it in the pt_uc field * of the thread structure. When user-level code voluntairly switches * from one thread to another, the ucontext_t is just below the top of * the stack, and we impose a limit on the amount of stack space above diff --git a/lib/libterm/termcap.3 b/lib/libterm/termcap.3 index 2fe8c86aad2..8f097c8cf5f 100644 --- a/lib/libterm/termcap.3 +++ b/lib/libterm/termcap.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: termcap.3,v 1.29 2003/08/07 16:44:56 agc Exp $ +.\" $NetBSD: termcap.3,v 1.30 2004/04/23 02:58:27 simonb Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -442,7 +442,7 @@ The .Fn t_setinfo function allows the termcap entry contained in the .Fa entry -string to be inserted into the the +string to be inserted into the .Fa info structure. Memory sufficient to hold the contents of |
