summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/dfasearch.c2
-rw-r--r--src/die.h2
-rw-r--r--src/grep.c2
-rw-r--r--src/grep.h2
-rw-r--r--src/kwsearch.c2
-rw-r--r--src/kwset.c2
-rw-r--r--src/kwset.h2
-rw-r--r--src/pcresearch.c2
-rw-r--r--src/search.h2
-rw-r--r--src/searchutils.c2
-rw-r--r--src/system.h2
12 files changed, 12 insertions, 12 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 1cfca3f1..1aebcf7f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,5 +1,5 @@
## Process this file with automake to create Makefile.in
-# Copyright 1997-1998, 2005-2019 Free Software Foundation, Inc.
+# Copyright 1997-1998, 2005-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
diff --git a/src/dfasearch.c b/src/dfasearch.c
index 0160d718..337345f1 100644
--- a/src/dfasearch.c
+++ b/src/dfasearch.c
@@ -1,5 +1,5 @@
/* dfasearch.c - searching subroutines using dfa and regex for grep.
- Copyright 1992, 1998, 2000, 2007, 2009-2019 Free Software Foundation, Inc.
+ Copyright 1992, 1998, 2000, 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
diff --git a/src/die.h b/src/die.h
index 4f6c3145..cd636fa9 100644
--- a/src/die.h
+++ b/src/die.h
@@ -1,5 +1,5 @@
/* Report an error and exit.
- Copyright 2016-2019 Free Software Foundation, Inc.
+ Copyright 2016-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
diff --git a/src/grep.c b/src/grep.c
index edf90ab9..35d563d1 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -1,5 +1,5 @@
/* grep.c - main driver file for grep.
- Copyright (C) 1992, 1997-2002, 2004-2019 Free Software Foundation, Inc.
+ Copyright (C) 1992, 1997-2002, 2004-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
diff --git a/src/grep.h b/src/grep.h
index 3468a782..ab95e350 100644
--- a/src/grep.h
+++ b/src/grep.h
@@ -1,5 +1,5 @@
/* grep.h - interface to grep driver for searching subroutines.
- Copyright (C) 1992, 1998, 2001, 2007, 2009-2019 Free Software Foundation,
+ Copyright (C) 1992, 1998, 2001, 2007, 2009-2020 Free Software Foundation,
Inc.
This program is free software; you can redistribute it and/or modify
diff --git a/src/kwsearch.c b/src/kwsearch.c
index 76443502..6f6d4d05 100644
--- a/src/kwsearch.c
+++ b/src/kwsearch.c
@@ -1,5 +1,5 @@
/* kwsearch.c - searching subroutines using kwset for grep.
- Copyright 1992, 1998, 2000, 2007, 2009-2019 Free Software Foundation, Inc.
+ Copyright 1992, 1998, 2000, 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
diff --git a/src/kwset.c b/src/kwset.c
index 728fe1dc..403af7e8 100644
--- a/src/kwset.c
+++ b/src/kwset.c
@@ -1,5 +1,5 @@
/* kwset.c - search for any of a set of keywords.
- Copyright (C) 1989, 1998, 2000, 2005, 2007, 2009-2019 Free Software
+ Copyright (C) 1989, 1998, 2000, 2005, 2007, 2009-2020 Free Software
Foundation, Inc.
This program is free software; you can redistribute it and/or modify
diff --git a/src/kwset.h b/src/kwset.h
index a8dbaf9e..793e2103 100644
--- a/src/kwset.h
+++ b/src/kwset.h
@@ -1,5 +1,5 @@
/* kwset.h - header declaring the keyword set library.
- Copyright (C) 1989, 1998, 2005, 2007, 2009-2019 Free Software Foundation,
+ Copyright (C) 1989, 1998, 2005, 2007, 2009-2020 Free Software Foundation,
Inc.
This program is free software; you can redistribute it and/or modify
diff --git a/src/pcresearch.c b/src/pcresearch.c
index 3e45c006..15a6a59b 100644
--- a/src/pcresearch.c
+++ b/src/pcresearch.c
@@ -1,5 +1,5 @@
/* pcresearch.c - searching subroutines using PCRE for grep.
- Copyright 2000, 2007, 2009-2019 Free Software Foundation, Inc.
+ Copyright 2000, 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
diff --git a/src/search.h b/src/search.h
index d6010b95..1d85a7e0 100644
--- a/src/search.h
+++ b/src/search.h
@@ -1,5 +1,5 @@
/* search.c - searching subroutines using dfa, kwset and regex for grep.
- Copyright 1992, 1998, 2000, 2007, 2009-2019 Free Software Foundation, Inc.
+ Copyright 1992, 1998, 2000, 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
diff --git a/src/searchutils.c b/src/searchutils.c
index d6a36f1e..84c319c7 100644
--- a/src/searchutils.c
+++ b/src/searchutils.c
@@ -1,5 +1,5 @@
/* searchutils.c - helper subroutines for grep's matchers.
- Copyright 1992, 1998, 2000, 2007, 2009-2019 Free Software Foundation, Inc.
+ Copyright 1992, 1998, 2000, 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
diff --git a/src/system.h b/src/system.h
index ddd325d1..e0287d1c 100644
--- a/src/system.h
+++ b/src/system.h
@@ -1,5 +1,5 @@
/* Portability cruft. Include after config.h and sys/types.h.
- Copyright 1996, 1998-2000, 2007, 2009-2019 Free Software Foundation, Inc.
+ Copyright 1996, 1998-2000, 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