[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/7] maint: bump copyright year
From: |
Eric Blake |
Subject: |
[PATCH 1/7] maint: bump copyright year |
Date: |
Tue, 3 Jan 2017 16:55:06 -0600 |
Needed to reduce number of 'make syntax-check' failures.
* gnulib: Update to latest.
* bootstrap.conf (src_modules): Add 'assure', to match gnulib module
changes in the meantime.
* .gitignore: Ignore results of assure module.
* cfg.mk (gnulib_dir): Declare our alternate location.
* bootstrap: Regenerate.
* all files: Use 'make update-copyright' to bump year.
Signed-off-by: Eric Blake <address@hidden>
(cherry picked from commit 102376916e49b6aae85dc6ff0b59699205a74bdf)
[Ultimately, this short-circuits all other commits from other branches
that touched gnulib to any intermediate version]
---
.gitignore | 1 +
AUTHORS | 4 ++--
COPYING | 2 +-
ChangeLog.old | 4 ++--
HACKING | 2 +-
Makefile.am | 2 +-
NEWS | 4 ++--
README | 3 ++-
README-alpha | 3 ++-
TODO | 2 +-
bootstrap | 8 ++++----
bootstrap.conf | 5 +++--
build-aux/gl/build-aux/bootstrap.in | 2 +-
build-aux/gl/build-aux/extract-trace | 2 +-
build-aux/gl/build-aux/funclib.sh | 2 +-
build-aux/gl/build-aux/inline-source | 2 +-
build-aux/gl/build-aux/options-parser | 2 +-
build-aux/gnulib | 2 +-
build-aux/m4/debug.m4 | 2 +-
build-aux/m4/gmp.m4 | 2 +-
build-aux/m4/gnulib-cache.m4 | 4 ++--
build-aux/m4/m4-error.m4 | 4 ++--
build-aux/m4/m4-getopt.m4 | 2 +-
build-aux/m4/m4-gettext.m4 | 4 ++--
build-aux/m4/m4-obstack.m4 | 4 ++--
build-aux/m4/m4-regex.m4 | 4 ++--
build-aux/m4/m4-rename.m4 | 3 ++-
build-aux/m4/m4-syscmd.m4 | 3 ++-
build-aux/m4/stackovf.m4 | 4 ++--
cfg.mk | 6 +++++-
configure.ac | 2 +-
doc/Makefile.am | 2 +-
doc/STYLE | 3 ++-
doc/examples/COPYING | 2 +-
doc/examples/WWW/COPYING | 2 +-
doc/examples/WWW/m4lib/COPYING | 2 +-
doc/examples/modtest.m4 | 3 ++-
doc/examples/shadow.m4 | 3 ++-
doc/examples/stdlib.m4 | 3 ++-
doc/examples/time.m4 | 3 ++-
doc/examples/time2.m4 | 3 ++-
doc/m4.texi | 4 ++--
m4/builtin.c | 4 ++--
m4/debug.c | 2 +-
m4/hash.c | 4 ++--
m4/hash.h | 2 +-
m4/input.c | 2 +-
m4/m4.c | 4 ++--
m4/m4module.h | 2 +-
m4/m4private.h | 2 +-
m4/macro.c | 4 ++--
m4/module.c | 4 ++--
m4/output.c | 4 ++--
m4/path.c | 2 +-
m4/resyntax.c | 4 ++--
m4/symtab.c | 2 +-
m4/syntax.c | 2 +-
m4/system_.h | 2 +-
m4/utility.c | 4 ++--
modules/README | 4 ++--
modules/evalparse.c | 4 ++--
modules/format.c | 4 ++--
modules/gnu.c | 4 ++--
modules/m4.c | 4 ++--
modules/m4.h | 2 +-
modules/mpeval.c | 4 ++--
modules/stdlib.c | 2 +-
modules/time.c | 2 +-
modules/traditional.c | 2 +-
src/freeze.c | 2 +-
src/m4.h | 4 ++--
src/main.c | 2 +-
src/stackovf.c | 4 ++--
tests/atlocal.in | 4 ++--
tests/builtins.at | 4 ++--
tests/freeze.at | 3 ++-
tests/generate.awk | 4 ++--
tests/import.c | 2 +-
tests/iso8859.m4 | 4 ++--
tests/m4.in | 4 ++--
tests/macros.at | 2 +-
tests/modtest.c | 4 ++--
tests/modules.at | 2 +-
tests/options.at | 4 ++--
tests/others.at | 4 ++--
tests/shadow.c | 4 ++--
tests/stackovf.test | 2 +-
tests/testsuite.at | 4 ++--
88 files changed, 144 insertions(+), 127 deletions(-)
diff --git a/.gitignore b/.gitignore
index b196d98..e0841d1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -70,6 +70,7 @@ Makefile.inc
/po/POTFILES
/po/Rules-quot
/po/stamp-po
+/src/assure*
/src/getopt*
/src/m4
/src/version-etc*
diff --git a/AUTHORS b/AUTHORS
index 45181e4..73ce2f9 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -32,8 +32,8 @@ Tim Rice address@hidden 2011-01-24
========================================================================
-Copyright (C) 2000, 2006-2007, 2010, 2013-2014 Free Software Foundation,
-Inc.
+Copyright (C) 2000, 2006-2007, 2010, 2013-2014, 2017 Free Software
+Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
diff --git a/COPYING b/COPYING
index 170a3ea..a9e5a4c 100644
--- a/COPYING
+++ b/COPYING
@@ -1,7 +1,7 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
- Copyright (C) 2007, 2013-2014 Free Software Foundation, Inc. <http://fsf.org/>
+ Copyright (C) 2007, 2013-2014, 2017 Free Software Foundation, Inc.
<http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
diff --git a/ChangeLog.old b/ChangeLog.old
index 6e311d4..ab146a8 100644
--- a/ChangeLog.old
+++ b/ChangeLog.old
@@ -12316,8 +12316,8 @@
coding: utf-8
End:
- Copyright (C) 1990-1994, 2000-2001, 2003, 2005-2010, 2013-2014
- Free Software Foundation, Inc.
+ Copyright (C) 1990-1994, 2000-2001, 2003, 2005-2010, 2013-2014,
+ 2017 Free Software Foundation, Inc.
Copying and distribution of this file, with or without
modification, are permitted provided the copyright notice
diff --git a/HACKING b/HACKING
index 7dbd683..08a949a 100644
--- a/HACKING
+++ b/HACKING
@@ -359,7 +359,7 @@ yyyy-mm-dd Name of Author <address@hidden> (tiny change)
that needs to be updated.
-----------
-Copyright (C) 2004-2010, 2013-2014 Free Software Foundation, Inc.
+Copyright (C) 2004-2010, 2013-2014, 2017 Free Software Foundation, Inc.
The canonical source of this file is maintained with the
GNU M4 package. Report bugs to address@hidden
diff --git a/Makefile.am b/Makefile.am
index 86561a8..1f38595 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,6 +1,6 @@
## Makefile.am - template for generating Makefile via Automake
##
-## Copyright (C) 2000-2001, 2003-2010, 2013-2014 Free Software
+## Copyright (C) 2000-2001, 2003-2010, 2013-2014, 2017 Free Software
## Foundation, Inc.
##
## This file is part of GNU M4.
diff --git a/NEWS b/NEWS
index 4277e9d..55f3bc3 100644
--- a/NEWS
+++ b/NEWS
@@ -1208,8 +1208,8 @@ Local Variables:
fill-column: 75
End:
-Copyright (C) 1992-1994, 2004-2011, 2013-2014 Free Software Foundation,
-Inc.
+Copyright (C) 1992-1994, 2004-2011, 2013-2014, 2017 Free Software
+Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
diff --git a/README b/README
index d875011..69255a2 100644
--- a/README
+++ b/README
@@ -93,7 +93,8 @@ note that the range specifies every single year in that
closed interval.
========================================================================
-Copyright (C) 2000, 2005-2011, 2013-2014 Free Software Foundation, Inc.
+Copyright (C) 2000, 2005-2011, 2013-2014, 2017 Free Software Foundation,
+Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
diff --git a/README-alpha b/README-alpha
index d54e743..bf4aa21 100644
--- a/README-alpha
+++ b/README-alpha
@@ -13,7 +13,8 @@ GNU m4 has a web-site at http://www.gnu.org/software/m4/
========================================================================
-Copyright (C) 2000, 2006, 2010, 2013-2014 Free Software Foundation, Inc.
+Copyright (C) 2000, 2006, 2010, 2013-2014, 2017 Free Software
+Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
diff --git a/TODO b/TODO
index b9fb88b..9833f03 100644
--- a/TODO
+++ b/TODO
@@ -1,5 +1,5 @@
GNU m4 TODO - Tasks that need implementing. -*- outline -*-
-Copyright (C) 2000-2001, 2006-2008, 2010, 2013-2014 Free Software
+Copyright (C) 2000-2001, 2006-2008, 2010, 2013-2014, 2017 Free Software
Foundation, Inc.
Tell the maintainers at <address@hidden> if you feel like volunteering
diff --git a/bootstrap b/bootstrap
index f81f3ff..8984cfd 100755
--- a/bootstrap
+++ b/bootstrap
@@ -5,7 +5,7 @@
# Bootstrap an Autotooled package from checked-out sources.
# Written by Gary V. Vaughan, 2010
-# Copyright (C) 2010-2014 Free Software Foundation, Inc.
+# Copyright (C) 2010-2014, 2017 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
@@ -235,7 +235,7 @@ scriptversion=2014-01-03.01; # UTC
# General shell script boiler plate, and helper functions.
# Written by Gary V. Vaughan, 2004
-# Copyright (C) 2004-2014 Free Software Foundation, Inc.
+# Copyright (C) 2004-2014, 2017 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
@@ -1541,7 +1541,7 @@ scriptversion=2014-01-07.03; # UTC
# A portable, pluggable option parser for Bourne shell.
# Written by Gary V. Vaughan, 2010
-# Copyright (C) 2010-2014 Free Software Foundation, Inc.
+# Copyright (C) 2010-2014, 2017 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
@@ -2146,7 +2146,7 @@ func_version ()
# Extract macro arguments from autotools input with GNU M4.
# Written by Gary V. Vaughan, 2010
#
-# Copyright (C) 2010-2014 Free Software Foundation, Inc.
+# Copyright (C) 2010-2014, 2017 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
diff --git a/bootstrap.conf b/bootstrap.conf
index b48b650..b232634 100644
--- a/bootstrap.conf
+++ b/bootstrap.conf
@@ -1,7 +1,7 @@
-# bootstrap.conf (GNU M4) version 2010-09-10
+# bootstrap.conf (GNU M4) version 2017-01-03
# Written by Gary V. Vaughan, 2010
-# Copyright (C) 2010, 2013-2014 Free Software Foundation, Inc.
+# Copyright (C) 2010, 2013-2014, 2017 Free Software Foundation, Inc.
# This file is part of GNU M4.
#
@@ -59,6 +59,7 @@ gnulib_non_module_files=$gnulib_non_module_files"
# List dependencies here too; we don't extract them, otherwise dependent
# modules could end up being imported to src/ *and* gnu/!
src_modules='
+assure
getopt-gnu
getopt-posix
version-etc-fsf
diff --git a/build-aux/gl/build-aux/bootstrap.in
b/build-aux/gl/build-aux/bootstrap.in
index 05025ff..4cc7362 100755
--- a/build-aux/gl/build-aux/bootstrap.in
+++ b/build-aux/gl/build-aux/bootstrap.in
@@ -3,7 +3,7 @@
# Bootstrap an Autotooled package from checked-out sources.
# Written by Gary V. Vaughan, 2010
-# Copyright (C) 2010-2014 Free Software Foundation, Inc.
+# Copyright (C) 2010-2014, 2017 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
diff --git a/build-aux/gl/build-aux/extract-trace
b/build-aux/gl/build-aux/extract-trace
index 41a7b8b..d0d83fe 100755
--- a/build-aux/gl/build-aux/extract-trace
+++ b/build-aux/gl/build-aux/extract-trace
@@ -3,7 +3,7 @@
# Extract macro arguments from autotools input with GNU M4.
# Written by Gary V. Vaughan, 2010
#
-# Copyright (C) 2010-2014 Free Software Foundation, Inc.
+# Copyright (C) 2010-2014, 2017 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
diff --git a/build-aux/gl/build-aux/funclib.sh
b/build-aux/gl/build-aux/funclib.sh
index 9cb02ff..fbe8b67 100644
--- a/build-aux/gl/build-aux/funclib.sh
+++ b/build-aux/gl/build-aux/funclib.sh
@@ -4,7 +4,7 @@ scriptversion=2014-01-03.01; # UTC
# General shell script boiler plate, and helper functions.
# Written by Gary V. Vaughan, 2004
-# Copyright (C) 2004-2014 Free Software Foundation, Inc.
+# Copyright (C) 2004-2014, 2017 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
diff --git a/build-aux/gl/build-aux/inline-source
b/build-aux/gl/build-aux/inline-source
index fede037..0e4da9c 100755
--- a/build-aux/gl/build-aux/inline-source
+++ b/build-aux/gl/build-aux/inline-source
@@ -3,7 +3,7 @@
# Output the contents of a shell script with sourced files inlined.
# Written by Gary V. Vaughan, 2012
-# Copyright (C) 2012-2014 Free Software Foundation, Inc.
+# Copyright (C) 2012-2014, 2017 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
diff --git a/build-aux/gl/build-aux/options-parser
b/build-aux/gl/build-aux/options-parser
index 41302a8..dd9867f 100644
--- a/build-aux/gl/build-aux/options-parser
+++ b/build-aux/gl/build-aux/options-parser
@@ -6,7 +6,7 @@ scriptversion=2014-01-07.03; # UTC
# A portable, pluggable option parser for Bourne shell.
# Written by Gary V. Vaughan, 2010
-# Copyright (C) 2010-2014 Free Software Foundation, Inc.
+# Copyright (C) 2010-2014, 2017 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
diff --git a/build-aux/gnulib b/build-aux/gnulib
index 79002fd..31bc499 160000
--- a/build-aux/gnulib
+++ b/build-aux/gnulib
@@ -1 +1 @@
-Subproject commit 79002fdd9f556694728f5ebc2ea0c43c14ef476d
+Subproject commit 31bc499696c19bb64741e56c8cd13e1a2ead87c2
diff --git a/build-aux/m4/debug.m4 b/build-aux/m4/debug.m4
index 38f4fc6..ec45e2d 100644
--- a/build-aux/m4/debug.m4
+++ b/build-aux/m4/debug.m4
@@ -1,7 +1,7 @@
## -*- Autoconf -*-
## debug.m4 -- massage compiler flags for debugging/optimisation
##
-## Copyright (C) 2000-2001, 2003, 2005-2007, 2010, 2013-2014 Free
+## Copyright (C) 2000-2001, 2003, 2005-2007, 2010, 2013-2014, 2017 Free
## Software Foundation, Inc.
## Copyright (C) 1999-2000 Ralf S. Engelschall
## Written by <address@hidden>
diff --git a/build-aux/m4/gmp.m4 b/build-aux/m4/gmp.m4
index ad9640d..0e60bdc 100644
--- a/build-aux/m4/gmp.m4
+++ b/build-aux/m4/gmp.m4
@@ -1,5 +1,5 @@
## -*- Autoconf -*-
-## Copyright (C) 2000-2001, 2003, 2006-2008, 2010, 2013-2014 Free
+## Copyright (C) 2000-2001, 2003, 2006-2008, 2010, 2013-2014, 2017 Free
## Software Foundation, Inc.
##
## This file is part of GNU M4.
diff --git a/build-aux/m4/gnulib-cache.m4 b/build-aux/m4/gnulib-cache.m4
index 145b3da..667d2ff 100644
--- a/build-aux/m4/gnulib-cache.m4
+++ b/build-aux/m4/gnulib-cache.m4
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2014 Free Software Foundation, Inc.
+# Copyright (C) 2002-2017 Free Software Foundation, Inc.
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -27,7 +27,7 @@
# Specification in the form of a command-line invocation:
-# gnulib-tool --import --dir=. --local-dir=build-aux/gl --lib=libgnu
--source-base=m4/gnu --m4-base=build-aux/m4 --doc-base=doc
--tests-base=tests/gnu --aux-dir=build-aux --with-tests --with-c++-tests
--no-conditional-dependencies --libtool --macro-prefix=M4 assert autobuild
avltree-oset binary-io bitrotate clean-temp cloexec close-stream closein
config-h configmake dirname error execute fclose fdl-1.3 fflush filenamecat
flexmember fopen fopen-safer freadptr freadseek fseeko gendocs gettext
git-version-gen gitlog-to-changelog gnumakefile gnupload gpl-3.0 intprops
inttypes maintainer-makefile manywarnings memchr2 memcmp2 memmem mkstemp
obstack obstack-printf-posix progname propername quote regex regexprops-generic
rename setenv sigpipe snprintf-posix spawn-pipe sprintf-posix stdbool
stdlib-safer strnlen strtod tempname unlocked-io unsetenv update-copyright
vasnprintf-posix verify verror wait-process xalloc xalloc-die xmemdup0 xoset
xprintf-posix xstrndup xvasprintf-posix
+# gnulib-tool --import --local-dir=build-aux/gl --lib=libgnu
--source-base=m4/gnu --m4-base=build-aux/m4 --doc-base=doc
--tests-base=tests/gnu --aux-dir=build-aux --with-tests --with-c++-tests
--no-conditional-dependencies --libtool --macro-prefix=M4 assert autobuild
avltree-oset binary-io bitrotate clean-temp cloexec close-stream closein
config-h configmake dirname error execute fclose fdl-1.3 fflush filenamecat
flexmember fopen fopen-safer freadptr freadseek fseeko gendocs gettext
git-version-gen gitlog-to-changelog gnumakefile gnupload gpl-3.0 intprops
inttypes maintainer-makefile manywarnings memchr2 memcmp2 memmem mkstemp
obstack obstack-printf-posix progname propername quote regex regexprops-generic
rename setenv sigpipe snprintf-posix spawn-pipe sprintf-posix stdbool
stdlib-safer strnlen strtod tempname unlocked-io unsetenv update-copyright
vasnprintf-posix verify verror wait-process xalloc xalloc-die xmemdup0 xoset
xprintf-posix xstrndup xvasprintf-posix
# Specification in the form of a few gnulib-tool.m4 macro invocations:
gl_LOCAL_DIR([build-aux/gl])
diff --git a/build-aux/m4/m4-error.m4 b/build-aux/m4/m4-error.m4
index 90f61e2..ba9907c 100644
--- a/build-aux/m4/m4-error.m4
+++ b/build-aux/m4/m4-error.m4
@@ -2,8 +2,8 @@
# m4-error.m4 -- Use the installed version of error.h if available.
# Written by Gary V. Vaughan <address@hidden>
#
-# Copyright (C) 2003-2004, 2006-2007, 2010, 2013-2014 Free Software
-# Foundation, Inc.
+# Copyright (C) 2003-2004, 2006-2007, 2010, 2013-2014, 2017 Free
+# Software Foundation, Inc.
#
# This file is part of GNU M4.
#
diff --git a/build-aux/m4/m4-getopt.m4 b/build-aux/m4/m4-getopt.m4
index a318fc4..2799e38 100644
--- a/build-aux/m4/m4-getopt.m4
+++ b/build-aux/m4/m4-getopt.m4
@@ -2,7 +2,7 @@
# m4-getopt.m4 -- Use the installed version of getopt.h if available.
# Written by Gary V. Vaughan <address@hidden>
#
-# Copyright (C) 2005-2007, 2009-2010, 2013-2014 Free Software
+# Copyright (C) 2005-2007, 2009-2010, 2013-2014, 2017 Free Software
# Foundation, Inc.
#
# This file is part of GNU M4.
diff --git a/build-aux/m4/m4-gettext.m4 b/build-aux/m4/m4-gettext.m4
index 01d1347..65c1299 100644
--- a/build-aux/m4/m4-gettext.m4
+++ b/build-aux/m4/m4-gettext.m4
@@ -2,8 +2,8 @@
# m4-gettext.m4 -- Use the installed version of GNU gettext if available.
# Written by Gary V. Vaughan <address@hidden>
#
-# Copyright (C) 2003-2004, 2006-2007, 2010, 2013-2014 Free Software
-# Foundation, Inc.
+# Copyright (C) 2003-2004, 2006-2007, 2010, 2013-2014, 2017 Free
+# Software Foundation, Inc.
#
# This file is part of GNU M4.
#
diff --git a/build-aux/m4/m4-obstack.m4 b/build-aux/m4/m4-obstack.m4
index 67bed34..db31b01 100644
--- a/build-aux/m4/m4-obstack.m4
+++ b/build-aux/m4/m4-obstack.m4
@@ -1,8 +1,8 @@
# -*- Autoconf -*-
# m4-obstack.m4 -- the libc supplied version of obstacks if available.
#
-# Copyright (C) 2000-2001, 2003-2004, 2006-2007, 2010, 2013-2014 Free
-# Software Foundation, Inc.
+# Copyright (C) 2000-2001, 2003-2004, 2006-2007, 2010, 2013-2014, 2017
+# Free Software Foundation, Inc.
# Written by Gary V. Vaughan <address@hidden>
#
# This file is part of GNU M4.
diff --git a/build-aux/m4/m4-regex.m4 b/build-aux/m4/m4-regex.m4
index 9d04807..c1e8acd 100644
--- a/build-aux/m4/m4-regex.m4
+++ b/build-aux/m4/m4-regex.m4
@@ -2,8 +2,8 @@
# m4-regex.m4 -- Use the installed regex if it is good enough.
# Written by Gary V. Vaughan <address@hidden>
#
-# Copyright (C) 2003-2004, 2006-2007, 2010, 2013-2014 Free Software
-# Foundation, Inc.
+# Copyright (C) 2003-2004, 2006-2007, 2010, 2013-2014, 2017 Free
+# Software Foundation, Inc.
#
# This file is part of GNU M4.
#
diff --git a/build-aux/m4/m4-rename.m4 b/build-aux/m4/m4-rename.m4
index 7fc36ad..faafd1b 100644
--- a/build-aux/m4/m4-rename.m4
+++ b/build-aux/m4/m4-rename.m4
@@ -2,7 +2,8 @@
# m4-rename.m4 -- Test the abilities of rename.
# Written by Eric Blake <address@hidden>
#
-# Copyright (C) 2008, 2010, 2013-2014 Free Software Foundation, Inc.
+# Copyright (C) 2008, 2010, 2013-2014, 2017 Free Software Foundation,
+# Inc.
#
# This file is part of GNU M4.
#
diff --git a/build-aux/m4/m4-syscmd.m4 b/build-aux/m4/m4-syscmd.m4
index 3e2edd1..2b4beb5 100644
--- a/build-aux/m4/m4-syscmd.m4
+++ b/build-aux/m4/m4-syscmd.m4
@@ -2,7 +2,8 @@
# m4-syscmd.m4 -- Allow choice of syscmd shell.
# Written by Eric Blake <address@hidden>
#
-# Copyright (C) 2009-2010, 2013-2014 Free Software Foundation, Inc.
+# Copyright (C) 2009-2010, 2013-2014, 2017 Free Software Foundation,
+# Inc.
#
# This file is part of GNU M4.
#
diff --git a/build-aux/m4/stackovf.m4 b/build-aux/m4/stackovf.m4
index d94e4db..104f737 100644
--- a/build-aux/m4/stackovf.m4
+++ b/build-aux/m4/stackovf.m4
@@ -1,8 +1,8 @@
# -*- Autoconf -*-
# stackovf.m4 -- how do we deal with stack overflow?
#
-# Copyright (C) 2000, 2003, 2006-2007, 2010, 2013-2014 Free Software
-# Foundation, Inc.
+# Copyright (C) 2000, 2003, 2006-2007, 2010, 2013-2014, 2017 Free
+# Software Foundation, Inc.
#
# This file is part of GNU M4.
#
diff --git a/cfg.mk b/cfg.mk
index 2ccdd50..ec9f6db 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -1,5 +1,6 @@
# Customize maint.mk. -*- makefile -*-
-# Copyright (C) 2003-2011, 2013-2014 Free Software Foundation, Inc.
+# Copyright (C) 2003-2011, 2013-2014, 2017 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
@@ -14,6 +15,9 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# We intentionally hide the submodule in a subdirectory
+gnulib_dir = $(srcdir)/build-aux/gnulib
+
# Used in maint.mk's web-manual rule
manual_title = GNU macro processor
diff --git a/configure.ac b/configure.ac
index 342aecf..eb2290c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
# Configure template for GNU m4. -*-Autoconf-*-
-# Copyright (C) 1991-1994, 2000-2002, 2004-2014 Free Software
+# Copyright (C) 1991-1994, 2000-2002, 2004-2014, 2017 Free Software
# Foundation, Inc.
#
# This file is part of GNU M4.
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 13d8539..59648e5 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,6 +1,6 @@
## Makefile.am - template for generating Makefile via Automake
##
-## Copyright (C) 2000-2001, 2003-2010, 2013-2014 Free Software
+## Copyright (C) 2000-2001, 2003-2010, 2013-2014, 2017 Free Software
## Foundation, Inc.
##
## This file is part of GNU M4.
diff --git a/doc/STYLE b/doc/STYLE
index 49f8933..6b10644 100644
--- a/doc/STYLE
+++ b/doc/STYLE
@@ -89,7 +89,8 @@ following restrictions on coding style apply:
========================================================================
-Copyright (C) 2003, 2006, 2010, 2013-2014 Free Software Foundation, Inc.
+Copyright (C) 2003, 2006, 2010, 2013-2014, 2017 Free Software
+Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
diff --git a/doc/examples/COPYING b/doc/examples/COPYING
index 328ccb3..e0170d7 100644
--- a/doc/examples/COPYING
+++ b/doc/examples/COPYING
@@ -2,7 +2,7 @@ The files in this directory provide example uses of GNU M4.
The following copyright notice applies to each of these
description files.
-Copyright (C) 2006, 2010, 2013-2014 Free Software Foundation, Inc.
+Copyright (C) 2006, 2010, 2013-2014, 2017 Free Software Foundation, Inc.
This file is free software; the Free Software Foundation
gives unlimited permission to copy and/or distribute it,
with or without modifications, as long as this notice is preserved.
diff --git a/doc/examples/WWW/COPYING b/doc/examples/WWW/COPYING
index 328ccb3..e0170d7 100644
--- a/doc/examples/WWW/COPYING
+++ b/doc/examples/WWW/COPYING
@@ -2,7 +2,7 @@ The files in this directory provide example uses of GNU M4.
The following copyright notice applies to each of these
description files.
-Copyright (C) 2006, 2010, 2013-2014 Free Software Foundation, Inc.
+Copyright (C) 2006, 2010, 2013-2014, 2017 Free Software Foundation, Inc.
This file is free software; the Free Software Foundation
gives unlimited permission to copy and/or distribute it,
with or without modifications, as long as this notice is preserved.
diff --git a/doc/examples/WWW/m4lib/COPYING b/doc/examples/WWW/m4lib/COPYING
index 328ccb3..e0170d7 100644
--- a/doc/examples/WWW/m4lib/COPYING
+++ b/doc/examples/WWW/m4lib/COPYING
@@ -2,7 +2,7 @@ The files in this directory provide example uses of GNU M4.
The following copyright notice applies to each of these
description files.
-Copyright (C) 2006, 2010, 2013-2014 Free Software Foundation, Inc.
+Copyright (C) 2006, 2010, 2013-2014, 2017 Free Software Foundation, Inc.
This file is free software; the Free Software Foundation
gives unlimited permission to copy and/or distribute it,
with or without modifications, as long as this notice is preserved.
diff --git a/doc/examples/modtest.m4 b/doc/examples/modtest.m4
index b4d01c3..17e6b02 100644
--- a/doc/examples/modtest.m4
+++ b/doc/examples/modtest.m4
@@ -1,4 +1,5 @@
-dnl Copyright (C) 2006, 2010, 2013-2014 Free Software Foundation, Inc.
+dnl Copyright (C) 2006, 2010, 2013-2014, 2017 Free Software Foundation,
+dnl Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it
dnl with or without modifications, as long as this notice is preserved.
diff --git a/doc/examples/shadow.m4 b/doc/examples/shadow.m4
index ca33de2..d82b844 100644
--- a/doc/examples/shadow.m4
+++ b/doc/examples/shadow.m4
@@ -1,4 +1,5 @@
-dnl Copyright (C) 2006, 2010, 2013-2014 Free Software Foundation, Inc.
+dnl Copyright (C) 2006, 2010, 2013-2014, 2017 Free Software Foundation,
+dnl Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it
dnl with or without modifications, as long as this notice is preserved.
diff --git a/doc/examples/stdlib.m4 b/doc/examples/stdlib.m4
index 2e25864..14df457 100644
--- a/doc/examples/stdlib.m4
+++ b/doc/examples/stdlib.m4
@@ -1,4 +1,5 @@
-dnl Copyright (C) 2006, 2010, 2013-2014 Free Software Foundation, Inc.
+dnl Copyright (C) 2006, 2010, 2013-2014, 2017 Free Software Foundation,
+dnl Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it
dnl with or without modifications, as long as this notice is preserved.
diff --git a/doc/examples/time.m4 b/doc/examples/time.m4
index 7cef47c..ae93104 100644
--- a/doc/examples/time.m4
+++ b/doc/examples/time.m4
@@ -1,4 +1,5 @@
-dnl Copyright (C) 2006, 2010, 2013-2014 Free Software Foundation, Inc.
+dnl Copyright (C) 2006, 2010, 2013-2014, 2017 Free Software Foundation,
+dnl Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it
dnl with or without modifications, as long as this notice is preserved.
diff --git a/doc/examples/time2.m4 b/doc/examples/time2.m4
index 021cb23..36840c4 100644
--- a/doc/examples/time2.m4
+++ b/doc/examples/time2.m4
@@ -1,4 +1,5 @@
-dnl Copyright (C) 2006, 2010, 2013-2014 Free Software Foundation, Inc.
+dnl Copyright (C) 2006, 2010, 2013-2014, 2017 Free Software Foundation,
+dnl Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it
dnl with or without modifications, as long as this notice is preserved.
diff --git a/doc/m4.texi b/doc/m4.texi
index ba1b157..9c59177 100644
--- a/doc/m4.texi
+++ b/doc/m4.texi
@@ -45,8 +45,8 @@
@value{VERSION}), a package containing an implementation of the m4 macro
language.
-Copyright @copyright{} 1989-1994, 2004-2011, 2013-2014 Free Software
-Foundation, Inc.
+Copyright @copyright{} 1989-1994, 2004-2011, 2013-2014, 2017 Free
+Software Foundation, Inc.
@quotation
Permission is granted to copy, distribute and/or modify this document
diff --git a/m4/builtin.c b/m4/builtin.c
index ee2f5c9..19db087 100644
--- a/m4/builtin.c
+++ b/m4/builtin.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 1999-2000, 2005-2008, 2010, 2013-2014 Free
- Software Foundation, Inc.
+ Copyright (C) 1989-1994, 1999-2000, 2005-2008, 2010, 2013-2014, 2017
+ Free Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/debug.c b/m4/debug.c
index 0eeece5..eb0e32f 100644
--- a/m4/debug.c
+++ b/m4/debug.c
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1991-1994, 2006-2010, 2013-2014 Free Software
+ Copyright (C) 1991-1994, 2006-2010, 2013-2014, 2017 Free Software
Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/hash.c b/m4/hash.c
index 41577c9..01b9064 100644
--- a/m4/hash.c
+++ b/m4/hash.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 2001, 2006-2010, 2013-2014 Free Software Foundation,
- Inc.
+ Copyright (C) 2001, 2006-2010, 2013-2014, 2017 Free Software
+ Foundation, Inc.
Written by Gary V. Vaughan <address@hidden>
This file is part of GNU M4.
diff --git a/m4/hash.h b/m4/hash.h
index 58341c2..46f0eee 100644
--- a/m4/hash.h
+++ b/m4/hash.h
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 2001, 2006-2007, 2010, 2013-2014 Free Software
+ Copyright (C) 2001, 2006-2007, 2010, 2013-2014, 2017 Free Software
Foundation, Inc.
Written by Gary V. Vaughan <address@hidden>
diff --git a/m4/input.c b/m4/input.c
index 1c830ba..edce12e 100644
--- a/m4/input.c
+++ b/m4/input.c
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 2006-2010, 2013-2014 Free Software
+ Copyright (C) 1989-1994, 2006-2010, 2013-2014, 2017 Free Software
Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/m4.c b/m4/m4.c
index 216a0fd..0bf185c 100644
--- a/m4/m4.c
+++ b/m4/m4.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 2001, 2004, 2006-2008, 2010, 2013-2014 Free
- Software Foundation, Inc.
+ Copyright (C) 1989-1994, 2001, 2004, 2006-2008, 2010, 2013-2014, 2017
+ Free Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/m4module.h b/m4/m4module.h
index 463ed5c..a96b985 100644
--- a/m4/m4module.h
+++ b/m4/m4module.h
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 1999-2000, 2003-2010, 2013-2014 Free
+ Copyright (C) 1989-1994, 1999-2000, 2003-2010, 2013-2014, 2017 Free
Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/m4private.h b/m4/m4private.h
index 3212906..a09ca9f 100644
--- a/m4/m4private.h
+++ b/m4/m4private.h
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 1998-1999, 2004-2010, 2013-2014 Free
+ Copyright (C) 1989-1994, 1998-1999, 2004-2010, 2013-2014, 2017 Free
Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/macro.c b/m4/macro.c
index 01f5f0f..ce2675b 100644
--- a/m4/macro.c
+++ b/m4/macro.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 2001, 2006-2010, 2013-2014 Free Software
- Foundation, Inc.
+ Copyright (C) 1989-1994, 2001, 2006-2010, 2013-2014, 2017 Free
+ Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/module.c b/m4/module.c
index 563cf44..990736c 100644
--- a/m4/module.c
+++ b/m4/module.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 1998-1999, 2002-2008, 2010, 2013-2014 Free
- Software Foundation, Inc.
+ Copyright (C) 1989-1994, 1998-1999, 2002-2008, 2010, 2013-2014, 2017
+ Free Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/output.c b/m4/output.c
index bf3c599..b937195 100644
--- a/m4/output.c
+++ b/m4/output.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 1998, 2002, 2004, 2006-2010, 2013-2014 Free
- Software Foundation, Inc.
+ Copyright (C) 1989-1994, 1998, 2002, 2004, 2006-2010, 2013-2014, 2017
+ Free Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/path.c b/m4/path.c
index ef743a3..37eeef9 100644
--- a/m4/path.c
+++ b/m4/path.c
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1993, 1998, 2004, 2006-2010, 2013-2014 Free
+ Copyright (C) 1989-1993, 1998, 2004, 2006-2010, 2013-2014, 2017 Free
Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/resyntax.c b/m4/resyntax.c
index 9ab66a9..704e357 100644
--- a/m4/resyntax.c
+++ b/m4/resyntax.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 2006-2008, 2010, 2013-2014 Free Software Foundation,
- Inc.
+ Copyright (C) 2006-2008, 2010, 2013-2014, 2017 Free Software
+ Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/symtab.c b/m4/symtab.c
index 5a8833f..b04b55e 100644
--- a/m4/symtab.c
+++ b/m4/symtab.c
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 2001, 2005-2008, 2010, 2013-2014 Free
+ Copyright (C) 1989-1994, 2001, 2005-2008, 2010, 2013-2014, 2017 Free
Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/syntax.c b/m4/syntax.c
index 8d31e44..4bde123 100644
--- a/m4/syntax.c
+++ b/m4/syntax.c
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 2002, 2004, 2006-2010, 2013-2014 Free
+ Copyright (C) 1989-1994, 2002, 2004, 2006-2010, 2013-2014, 2017 Free
Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/system_.h b/m4/system_.h
index 340c987..7176b38 100644
--- a/m4/system_.h
+++ b/m4/system_.h
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 2000-2001, 2003, 2006-2008, 2010, 2013-2014 Free
+ Copyright (C) 2000-2001, 2003, 2006-2008, 2010, 2013-2014, 2017 Free
Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/m4/utility.c b/m4/utility.c
index 7434fc6..2063c6a 100644
--- a/m4/utility.c
+++ b/m4/utility.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 1998-1999, 2003, 2006-2010, 2013-2014 Free
- Software Foundation, Inc.
+ Copyright (C) 1989-1994, 1998-1999, 2003, 2006-2010, 2013-2014, 2017
+ Free Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/modules/README b/modules/README
index f2f4851..b8f8169 100644
--- a/modules/README
+++ b/modules/README
@@ -79,8 +79,8 @@ or in the case of time2.m4
========================================================================
-Copyright (C) 2000-2001, 2006, 2010, 2013-2014 Free Software Foundation,
-Inc.
+Copyright (C) 2000-2001, 2006, 2010, 2013-2014, 2017 Free Software
+Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
diff --git a/modules/evalparse.c b/modules/evalparse.c
index b3989f3..d70d606 100644
--- a/modules/evalparse.c
+++ b/modules/evalparse.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 2001, 2006-2010, 2013-2014 Free Software
- Foundation, Inc.
+ Copyright (C) 1989-1994, 2001, 2006-2010, 2013-2014, 2017 Free
+ Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/modules/format.c b/modules/format.c
index 2154f4d..2c87fcc 100644
--- a/modules/format.c
+++ b/modules/format.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 2001, 2006-2010, 2013-2014 Free Software
- Foundation, Inc.
+ Copyright (C) 1989-1994, 2001, 2006-2010, 2013-2014, 2017 Free
+ Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/modules/gnu.c b/modules/gnu.c
index 994b368..334ab67 100644
--- a/modules/gnu.c
+++ b/modules/gnu.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 2000, 2004-2010, 2013-2014 Free Software Foundation,
- Inc.
+ Copyright (C) 2000, 2004-2010, 2013-2014, 2017 Free Software
+ Foundation, Inc.
This file is part of GNU M4.
diff --git a/modules/m4.c b/modules/m4.c
index ee97349..ed06942 100644
--- a/modules/m4.c
+++ b/modules/m4.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 2000, 2002-2004, 2006-2010, 2013-2014 Free Software
- Foundation, Inc.
+ Copyright (C) 2000, 2002-2004, 2006-2010, 2013-2014, 2017 Free
+ Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/modules/m4.h b/modules/m4.h
index 4e1a975..769665e 100644
--- a/modules/m4.h
+++ b/modules/m4.h
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 2003, 2006-2008, 2010, 2013-2014 Free Software
+ Copyright (C) 2003, 2006-2008, 2010, 2013-2014, 2017 Free Software
Foundation, Inc.
This file is part of GNU M4.
diff --git a/modules/mpeval.c b/modules/mpeval.c
index 6254416..1c998b6 100644
--- a/modules/mpeval.c
+++ b/modules/mpeval.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 2000-2001, 2006-2008, 2010, 2013-2014 Free Software
- Foundation, Inc.
+ Copyright (C) 2000-2001, 2006-2008, 2010, 2013-2014, 2017 Free
+ Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/modules/stdlib.c b/modules/stdlib.c
index 163bdca..708f8c6 100644
--- a/modules/stdlib.c
+++ b/modules/stdlib.c
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1999-2001, 2006-2010, 2013-2014 Free Software
+ Copyright (C) 1999-2001, 2006-2010, 2013-2014, 2017 Free Software
Foundation, Inc.
This file is part of GNU M4.
diff --git a/modules/time.c b/modules/time.c
index 03ce399..7f64f92 100644
--- a/modules/time.c
+++ b/modules/time.c
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1999-2001, 2006-2010, 2013-2014 Free Software
+ Copyright (C) 1999-2001, 2006-2010, 2013-2014, 2017 Free Software
Foundation, Inc.
This file is part of GNU M4.
diff --git a/modules/traditional.c b/modules/traditional.c
index 845bd6e..648cef7 100644
--- a/modules/traditional.c
+++ b/modules/traditional.c
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 2000, 2006-2008, 2010, 2013-2014 Free Software
+ Copyright (C) 2000, 2006-2008, 2010, 2013-2014, 2017 Free Software
Foundation, Inc.
This file is part of GNU M4.
diff --git a/src/freeze.c b/src/freeze.c
index 8298317..426e34b 100644
--- a/src/freeze.c
+++ b/src/freeze.c
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 2004-2010, 2013-2014 Free Software
+ Copyright (C) 1989-1994, 2004-2010, 2013-2014, 2017 Free Software
Foundation, Inc.
This file is part of GNU M4.
diff --git a/src/m4.h b/src/m4.h
index 714c488..acd8fa9 100644
--- a/src/m4.h
+++ b/src/m4.h
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 2006-2007, 2010, 2013-2014 Free Software
- Foundation, Inc.
+ Copyright (C) 1989-1994, 2006-2007, 2010, 2013-2014, 2017 Free
+ Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/src/main.c b/src/main.c
index d8adabc..4b897e3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1989-1994, 1999-2000, 2003-2010, 2013-2014 Free
+ Copyright (C) 1989-1994, 1999-2000, 2003-2010, 2013-2014, 2017 Free
Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/src/stackovf.c b/src/stackovf.c
index 4810019..3d0468a 100644
--- a/src/stackovf.c
+++ b/src/stackovf.c
@@ -1,6 +1,6 @@
/* Detect stack overflow (when getrlimit and sigaction or sigvec are available)
- Copyright (C) 1993-1994, 2006-2007, 2010, 2013-2014 Free Software
- Foundation, Inc.
+ Copyright (C) 1993-1994, 2006-2007, 2010, 2013-2014, 2017 Free
+ Software Foundation, Inc.
Jim Avera <address@hidden>, October 1993.
This file is part of GNU M4.
diff --git a/tests/atlocal.in b/tests/atlocal.in
index 84cd9ea..dd6f35e 100644
--- a/tests/atlocal.in
+++ b/tests/atlocal.in
@@ -1,8 +1,8 @@
# -*- shell-script -*-
# @configure_input@
# Configurable variable values for M4 test suite.
-# Copyright (C) 2000-2001, 2006, 2008, 2010, 2013-2014 Free Software
-# Foundation, Inc.
+# Copyright (C) 2000-2001, 2006, 2008, 2010, 2013-2014, 2017 Free
+# Software Foundation, Inc.
# This file is part of GNU M4.
#
diff --git a/tests/builtins.at b/tests/builtins.at
index 8bda542..ab8fa9f 100644
--- a/tests/builtins.at
+++ b/tests/builtins.at
@@ -1,6 +1,6 @@
# Hand crafted tests for GNU M4. -*- Autotest -*-
-# Copyright (C) 2001, 2006-2010, 2013-2014 Free Software Foundation,
-# Inc.
+# Copyright (C) 2001, 2006-2010, 2013-2014, 2017 Free Software
+# Foundation, Inc.
# This file is part of GNU M4.
#
diff --git a/tests/freeze.at b/tests/freeze.at
index dd3bfed..438bcc3 100644
--- a/tests/freeze.at
+++ b/tests/freeze.at
@@ -1,5 +1,6 @@
# Hand crafted tests for GNU M4. -*- Autotest -*-
-# Copyright (C) 2006-2010, 2013-2014 Free Software Foundation, Inc.
+# Copyright (C) 2006-2010, 2013-2014, 2017 Free Software Foundation,
+# Inc.
# This file is part of GNU M4.
#
diff --git a/tests/generate.awk b/tests/generate.awk
index f0ee5a7..f373d7f 100755
--- a/tests/generate.awk
+++ b/tests/generate.awk
@@ -1,7 +1,7 @@
# Extract all examples from the manual source. -*- AWK -*-
-# Copyright (C) 1992, 2000-2001, 2006-2010, 2013-2014 Free Software
-# Foundation, Inc.
+# Copyright (C) 1992, 2000-2001, 2006-2010, 2013-2014, 2017 Free
+# Software Foundation, Inc.
#
# This file is part of GNU M4.
#
diff --git a/tests/import.c b/tests/import.c
index d588c1e..cdd1176 100644
--- a/tests/import.c
+++ b/tests/import.c
@@ -1,5 +1,5 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 2003, 2006-2008, 2010, 2013-2014 Free Software
+ Copyright (C) 2003, 2006-2008, 2010, 2013-2014, 2017 Free Software
Foundation, Inc.
This file is part of GNU M4.
diff --git a/tests/iso8859.m4 b/tests/iso8859.m4
index 59fb8a4..8ffb753 100644
--- a/tests/iso8859.m4
+++ b/tests/iso8859.m4
@@ -1,5 +1,5 @@
-dnl Copyright (C) 2006-2007, 2010, 2013-2014 Free Software Foundation,
-dnl Inc.
+dnl Copyright (C) 2006-2007, 2010, 2013-2014, 2017 Free Software
+dnl Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it
dnl with or without modifications, as long as this notice is preserved.
diff --git a/tests/m4.in b/tests/m4.in
index 4dd9d4f..49d456c 100644
--- a/tests/m4.in
+++ b/tests/m4.in
@@ -2,8 +2,8 @@
# @configure_input@
# Wrapper around a non installed m4 to make it work as an installed one.
#
-# Copyright (C) 2001-2002, 2006-2008, 2010, 2013-2014 Free Software
-# Foundation, Inc.
+# Copyright (C) 2001-2002, 2006-2008, 2010, 2013-2014, 2017 Free
+# Software Foundation, Inc.
#
# This file is part of GNU M4.
#
diff --git a/tests/macros.at b/tests/macros.at
index 11f32ee..2f8d5ba 100644
--- a/tests/macros.at
+++ b/tests/macros.at
@@ -1,5 +1,5 @@
# Hand crafted tests for GNU M4. -*- Autotest -*-
-# Copyright (C) 2001, 2006-2008, 2010, 2013-2014 Free Software
+# Copyright (C) 2001, 2006-2008, 2010, 2013-2014, 2017 Free Software
# Foundation, Inc.
# This file is part of GNU M4.
diff --git a/tests/modtest.c b/tests/modtest.c
index 161b3e7..ad6d91b 100644
--- a/tests/modtest.c
+++ b/tests/modtest.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1999-2001, 2003-2004, 2006-2008, 2010, 2013-2014 Free
- Software Foundation, Inc.
+ Copyright (C) 1999-2001, 2003-2004, 2006-2008, 2010, 2013-2014, 2017
+ Free Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/tests/modules.at b/tests/modules.at
index 9320ce4..f4e5485 100644
--- a/tests/modules.at
+++ b/tests/modules.at
@@ -1,5 +1,5 @@
# Hand crafted tests for GNU M4. -*- Autotest -*-
-# Copyright (C) 2001, 2006-2008, 2010, 2013-2014 Free Software
+# Copyright (C) 2001, 2006-2008, 2010, 2013-2014, 2017 Free Software
# Foundation, Inc.
# This file is part of GNU M4.
diff --git a/tests/options.at b/tests/options.at
index 7084207..29f41c0 100644
--- a/tests/options.at
+++ b/tests/options.at
@@ -1,6 +1,6 @@
# Hand crafted tests for GNU M4. -*- Autotest -*-
-# Copyright (C) 2001, 2006-2010, 2013-2014 Free Software Foundation,
-# Inc.
+# Copyright (C) 2001, 2006-2010, 2013-2014, 2017 Free Software
+# Foundation, Inc.
# This file is part of GNU M4.
#
diff --git a/tests/others.at b/tests/others.at
index 9c7a0c6..1b035eb 100644
--- a/tests/others.at
+++ b/tests/others.at
@@ -1,6 +1,6 @@
# Hand crafted tests for GNU M4. -*- Autotest -*-
-# Copyright (C) 2001, 2006-2010, 2013-2014 Free Software Foundation,
-# Inc.
+# Copyright (C) 2001, 2006-2010, 2013-2014, 2017 Free Software
+# Foundation, Inc.
# This file is part of GNU M4.
#
diff --git a/tests/shadow.c b/tests/shadow.c
index c6a64d2..ae8cac7 100644
--- a/tests/shadow.c
+++ b/tests/shadow.c
@@ -1,6 +1,6 @@
/* GNU m4 -- A simple macro processor
- Copyright (C) 1999-2000, 2006-2008, 2010, 2013-2014 Free Software
- Foundation, Inc.
+ Copyright (C) 1999-2000, 2006-2008, 2010, 2013-2014, 2017 Free
+ Software Foundation, Inc.
This file is part of GNU M4.
diff --git a/tests/stackovf.test b/tests/stackovf.test
index f0ebc67..d57fc0f 100755
--- a/tests/stackovf.test
+++ b/tests/stackovf.test
@@ -1,6 +1,6 @@
#!/bin/sh
# This file is part of the GNU m4 testsuite
-# Copyright (C) 2000, 2003, 2007, 2010, 2013-2014 Free Software
+# Copyright (C) 2000, 2003, 2007, 2010, 2013-2014, 2017 Free Software
# Foundation, Inc.
#
# This file is part of GNU M4.
diff --git a/tests/testsuite.at b/tests/testsuite.at
index a7cdfc4..19fc9ee 100644
--- a/tests/testsuite.at
+++ b/tests/testsuite.at
@@ -1,8 +1,8 @@
# Process with autom4te to create an -*- Autotest -*- test suite.
# Test suite for GNU M4.
-# Copyright (C) 2001, 2006-2010, 2013-2014 Free Software Foundation,
-# Inc.
+# Copyright (C) 2001, 2006-2010, 2013-2014, 2017 Free Software
+# Foundation, Inc.
# This file is part of GNU M4.
#
--
2.9.3
- [PATCH 0/7] partial resync of branch-1.4 into master, Eric Blake, 2017/01/03
- [PATCH 3/7] doc: drop obsolete @setcontentsaftertitlepage, Eric Blake, 2017/01/03
- [PATCH 2/7] maint: kill trailing spaces, Eric Blake, 2017/01/03
- [PATCH 4/7] maint: release no longer creates a diff file, Eric Blake, 2017/01/03
- [PATCH 6/7] maint: make silent builds the default, Eric Blake, 2017/01/03
- [PATCH 1/7] maint: bump copyright year,
Eric Blake <=
- [PATCH 7/7] maint: summarize highlights of 1.4.18 release, Eric Blake, 2017/01/03
- [PATCH 5/7] maint: automake 1.11.5 and earlier generate insecure dist rules., Eric Blake, 2017/01/03