Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Prefer modern simple past tense and past participle of catch



details:   https://anonhg.NetBSD.org/src/rev/17aaa743137d
branches:  trunk
changeset: 818858:17aaa743137d
user:      kamil <kamil%NetBSD.org@localhost>
date:      Thu Nov 03 22:08:30 2016 +0000

description:
Prefer modern simple past tense and past participle of catch

The "catched" form is obsolete and nonstandard, prefer "caught".

diffstat:

 sys/arch/amiga/dev/grf_ul.c        |  6 +++---
 sys/arch/sgimips/sgimips/machdep.c |  6 +++---
 sys/kern/kern_exec.c               |  6 +++---
 tests/lib/libc/gen/t_raise.c       |  6 +++---
 usr.bin/xlint/lint1/decl.c         |  6 +++---
 5 files changed, 15 insertions(+), 15 deletions(-)

diffs (135 lines):

diff -r c6a6c82c309e -r 17aaa743137d sys/arch/amiga/dev/grf_ul.c
--- a/sys/arch/amiga/dev/grf_ul.c       Thu Nov 03 20:58:25 2016 +0000
+++ b/sys/arch/amiga/dev/grf_ul.c       Thu Nov 03 22:08:30 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: grf_ul.c,v 1.50 2014/01/22 00:25:16 christos Exp $ */
+/*     $NetBSD: grf_ul.c,v 1.51 2016/11/03 22:08:31 kamil Exp $ */
 #define UL_DEBUG
 
 /*-
@@ -33,7 +33,7 @@
 #include "opt_amigacons.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: grf_ul.c,v 1.50 2014/01/22 00:25:16 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: grf_ul.c,v 1.51 2016/11/03 22:08:31 kamil Exp $");
 
 #include "grful.h"
 #include "ite.h"
@@ -522,7 +522,7 @@
                gup->gus_isr.isr_intr = ulisr;
                gup->gus_isr.isr_arg = (void *)gp;
                /*
-                * To make sure ints are always catched, first add new isr
+                * To make sure ints are always caught, first add new isr
                 * then remove old:
                 */
                add_isr(&gup->gus_isr);
diff -r c6a6c82c309e -r 17aaa743137d sys/arch/sgimips/sgimips/machdep.c
--- a/sys/arch/sgimips/sgimips/machdep.c        Thu Nov 03 20:58:25 2016 +0000
+++ b/sys/arch/sgimips/sgimips/machdep.c        Thu Nov 03 22:08:30 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.141 2015/06/26 22:55:06 matt Exp $       */
+/*     $NetBSD: machdep.c,v 1.142 2016/11/03 22:08:31 kamil Exp $      */
 
 /*
  * Copyright (c) 2000 Soren S. Jorvang
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.141 2015/06/26 22:55:06 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.142 2016/11/03 22:08:31 kamil Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -394,7 +394,7 @@
 
        /*
         * The case where the kernel has been loaded by a
-        * boot loader will usually have been catched by
+        * boot loader will usually have been caught by
         * the first makebootdev() case earlier on, but
         * we still use OSLoadPartition to get the preferred
         * root filesystem location, even if it's not
diff -r c6a6c82c309e -r 17aaa743137d sys/kern/kern_exec.c
--- a/sys/kern/kern_exec.c      Thu Nov 03 20:58:25 2016 +0000
+++ b/sys/kern/kern_exec.c      Thu Nov 03 22:08:30 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kern_exec.c,v 1.437 2016/09/15 17:44:16 christos Exp $ */
+/*     $NetBSD: kern_exec.c,v 1.438 2016/11/03 22:08:30 kamil Exp $    */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -59,7 +59,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_exec.c,v 1.437 2016/09/15 17:44:16 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_exec.c,v 1.438 2016/11/03 22:08:30 kamil Exp $");
 
 #include "opt_exec.h"
 #include "opt_execfmt.h"
@@ -1213,7 +1213,7 @@
        if (__predict_false(ktrace_on))
                fd_ktrexecfd();
 
-       execsigs(p);            /* reset catched signals */
+       execsigs(p);            /* reset caught signals */
 
        mutex_enter(p->p_lock);
        l->l_ctxlink = NULL;    /* reset ucontext link */
diff -r c6a6c82c309e -r 17aaa743137d tests/lib/libc/gen/t_raise.c
--- a/tests/lib/libc/gen/t_raise.c      Thu Nov 03 20:58:25 2016 +0000
+++ b/tests/lib/libc/gen/t_raise.c      Thu Nov 03 22:08:30 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: t_raise.c,v 1.5 2011/05/10 12:43:42 jruoho Exp $ */
+/*     $NetBSD: t_raise.c,v 1.6 2016/11/03 22:08:31 kamil Exp $ */
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_raise.c,v 1.5 2011/05/10 12:43:42 jruoho Exp $");
+__RCSID("$NetBSD: t_raise.c,v 1.6 2016/11/03 22:08:31 kamil Exp $");
 
 #include <atf-c.h>
 
@@ -176,7 +176,7 @@
                (void)raise(SIGUSR1);
 
        if (count != maxiter)
-               atf_tc_fail("not all signals were catched");
+               atf_tc_fail("not all signals were caught");
 }
 
 ATF_TP_ADD_TCS(tp)
diff -r c6a6c82c309e -r 17aaa743137d usr.bin/xlint/lint1/decl.c
--- a/usr.bin/xlint/lint1/decl.c        Thu Nov 03 20:58:25 2016 +0000
+++ b/usr.bin/xlint/lint1/decl.c        Thu Nov 03 22:08:30 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: decl.c,v 1.65 2016/08/23 16:42:55 christos Exp $ */
+/* $NetBSD: decl.c,v 1.66 2016/11/03 22:08:30 kamil Exp $ */
 
 /*
  * Copyright (c) 1996 Christopher G. Demetriou.  All Rights Reserved.
@@ -38,7 +38,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID) && !defined(lint)
-__RCSID("$NetBSD: decl.c,v 1.65 2016/08/23 16:42:55 christos Exp $");
+__RCSID("$NetBSD: decl.c,v 1.66 2016/11/03 22:08:30 kamil Exp $");
 #endif
 
 #include <sys/param.h>
@@ -2035,7 +2035,7 @@
                return(0);
        if (rsym->s_scl == EXTERN && rsym->s_def == DEF) {
                /*
-                * All cases except "int a = 1; static int a;" are catched
+                * All cases except "int a = 1; static int a;" are caught
                 * above with or without a warning
                 */
                /* redeclaration of %s */



Home | Main Index | Thread Index | Old Index