gawk-diffs
[Top][All Lists]
Advanced

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

[SCM] gawk branch, master, updated. gawk-4.1.0-3875-gb772cbd


From: Arnold Robbins
Subject: [SCM] gawk branch, master, updated. gawk-4.1.0-3875-gb772cbd
Date: Fri, 24 Jan 2020 02:46:27 -0500 (EST)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, master has been updated
       via  b772cbdb64d399de121a056656a4d275f2b9b167 (commit)
      from  c0dfb9269380ff5a90dbf6606f64989848304527 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=b772cbdb64d399de121a056656a4d275f2b9b167

commit b772cbdb64d399de121a056656a4d275f2b9b167
Author: Arnold D. Robbins <address@hidden>
Date:   Fri Jan 24 09:40:48 2020 +0200

    Update copyright years on changed files.

diff --git a/ChangeLog b/ChangeLog
index 48d1f64..cfe9637 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2020-01-24         Arnold D. Robbins     <address@hidden>
+
+       * array.c, profile.c, cint_array.c, builtin.c, interpret.h,
+       main.c: Update copyright years.
+
 2020-01-23         Arnold D. Robbins     <address@hidden>
 
        * array.c (sort_up_value_type): Handle other types of nodes,
diff --git a/array.c b/array.c
index 4f89457..ae21b32 100644
--- a/array.c
+++ b/array.c
@@ -3,7 +3,7 @@
  */
 
 /*
- * Copyright (C) 1986, 1988, 1989, 1991-2014, 2016, 2018, 2019,
+ * Copyright (C) 1986, 1988, 1989, 1991-2014, 2016, 2018, 2019, 2020,
  * the Free Software Foundation, Inc.
  *
  * This file is part of GAWK, the GNU implementation of the
diff --git a/builtin.c b/builtin.c
index f8ca037..8be3b9e 100644
--- a/builtin.c
+++ b/builtin.c
@@ -3,7 +3,8 @@
  */
 
 /*
- * Copyright (C) 1986, 1988, 1989, 1991-2019 the Free Software Foundation, Inc.
+ * Copyright (C) 1986, 1988, 1989, 1991-2020,
+ * the Free Software Foundation, Inc.
  *
  * This file is part of GAWK, the GNU implementation of the
  * AWK Programming Language.
diff --git a/cint_array.c b/cint_array.c
index d7171ac..dd35ac8 100644
--- a/cint_array.c
+++ b/cint_array.c
@@ -3,7 +3,7 @@
  */
 
 /*
- * Copyright (C) 1986, 1988, 1989, 1991-2013, 2016, 2017, 2019,
+ * Copyright (C) 1986, 1988, 1989, 1991-2013, 2016, 2017, 2019, 2020,
  * the Free Software Foundation, Inc.
  *
  * This file is part of GAWK, the GNU implementation of the
diff --git a/interpret.h b/interpret.h
index d157b5b..80ef468 100644
--- a/interpret.h
+++ b/interpret.h
@@ -3,7 +3,8 @@
  */
 
 /* 
- * Copyright (C) 1986, 1988, 1989, 1991-2019 the Free Software Foundation, Inc.
+ * Copyright (C) 1986, 1988, 1989, 1991-2020,
+ * the Free Software Foundation, Inc.
  * 
  * This file is part of GAWK, the GNU implementation of the
  * AWK Programming Language.
diff --git a/main.c b/main.c
index ae34d75..d200b6f 100644
--- a/main.c
+++ b/main.c
@@ -3,7 +3,8 @@
  */
 
 /*
- * Copyright (C) 1986, 1988, 1989, 1991-2019 the Free Software Foundation, Inc.
+ * Copyright (C) 1986, 1988, 1989, 1991-2020,
+ * the Free Software Foundation, Inc.
  *
  * This file is part of GAWK, the GNU implementation of the
  * AWK Programming Language.
@@ -24,7 +25,7 @@
  */
 
 /* FIX THIS BEFORE EVERY RELEASE: */
-#define UPDATE_YEAR    2019
+#define UPDATE_YEAR    2020
 
 #include "awk.h"
 #include "getopt.h"
diff --git a/profile.c b/profile.c
index d464c30..0f77c8a 100644
--- a/profile.c
+++ b/profile.c
@@ -3,7 +3,7 @@
  */
 
 /*
- * Copyright (C) 1999-2019 the Free Software Foundation, Inc.
+ * Copyright (C) 1999-2020 the Free Software Foundation, Inc.
  *
  * This file is part of GAWK, the GNU implementation of the
  * AWK Programming Language.
diff --git a/support/ChangeLog b/support/ChangeLog
index 4a57d55..1382bcf 100644
--- a/support/ChangeLog
+++ b/support/ChangeLog
@@ -1,3 +1,7 @@
+2020-01-24         Arnold D. Robbins     <address@hidden>
+
+       * dfa.h, dfa.c: Update copyright years.
+
 2019-12-20         Arnold D. Robbins     <address@hidden>
 
        * dfa.h, dfa.c: Updated from GNULIB.
diff --git a/support/dfa.c b/support/dfa.c
index 0aa8124..65b0972 100644
--- a/support/dfa.c
+++ b/support/dfa.c
@@ -1,5 +1,5 @@
 /* dfa.c - deterministic extended regexp routines for GNU
-   Copyright (C) 1988, 1998, 2000, 2002, 2004-2005, 2007-2019 Free Software
+   Copyright (C) 1988, 1998, 2000, 2002, 2004-2005, 2007-2020 Free Software
    Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
diff --git a/support/dfa.h b/support/dfa.h
index 0da597f..80e8dba 100644
--- a/support/dfa.h
+++ b/support/dfa.h
@@ -1,5 +1,5 @@
 /* dfa.h - declarations for GNU deterministic regexp compiler
-   Copyright (C) 1988, 1998, 2007, 2009-2019 Free Software Foundation, Inc.
+   Copyright (C) 1988, 1998, 2007, 2009-2020 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog         | 5 +++++
 array.c           | 2 +-
 builtin.c         | 3 ++-
 cint_array.c      | 2 +-
 interpret.h       | 3 ++-
 main.c            | 5 +++--
 profile.c         | 2 +-
 support/ChangeLog | 4 ++++
 support/dfa.c     | 2 +-
 support/dfa.h     | 2 +-
 10 files changed, 21 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]