aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am3
-rw-r--r--NEWS7
-rw-r--r--README2
-rw-r--r--README-alpha2
-rw-r--r--README-hacking3
-rw-r--r--acinclude.m42
-rwxr-xr-xbootstrap2
-rw-r--r--bootstrap.conf2
-rw-r--r--configure.ac3
-rw-r--r--doc/Makefile.am2
-rw-r--r--doc/cflow.12
-rw-r--r--doc/cflow.texi2
-rw-r--r--doc/fdl.texi2
-rwxr-xr-xdoc/gendocs.sh3
-rwxr-xr-xdoc/gendocs_template2
-rw-r--r--elisp/Makefile.am2
-rw-r--r--elisp/cflow-mode.el2
-rw-r--r--src/Makefile.am2
-rw-r--r--src/c.l2
-rw-r--r--src/cflow.h2
-rw-r--r--src/depmap.c2
-rw-r--r--src/gnu.c2
-rw-r--r--src/linked-list.c2
-rw-r--r--src/main.c2
-rw-r--r--src/output.c2
-rw-r--r--src/parser.h2
-rw-r--r--src/posix.c2
-rw-r--r--src/rc.c2
-rw-r--r--src/symbol.c2
-rw-r--r--src/wordsplit.c2
-rw-r--r--src/wordsplit.h2
31 files changed, 36 insertions, 35 deletions
diff --git a/Makefile.am b/Makefile.am
index 953ee50..8a77d69 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,6 @@
# This file is part of GNU cflow
-# Copyright (C) 2005, 2007, 2009, 2015 Free Software Foundation, Inc.
+# Copyright (C) 2005, 2007, 2009, 2015-2016 Free Software Foundation,
+# Inc.
#
# Written by Sergey Poznyakoff
#
diff --git a/NEWS b/NEWS
index c678539..dbdd737 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
-GNU cflow NEWS -- history of user-visible changes. 2014-02-27
-Copyright (C) 2005-2007, 2009-2011, 2014-2015 Sergey Poznyakoff
+GNU cflow NEWS -- history of user-visible changes. 2016-03-22
+Copyright (C) 2005-2007, 2009-2011, 2014-2016 Sergey Poznyakoff
See the end of file for copying conditions.
Please send cflow bug reports to <bug-cflow@gnu.org>.
@@ -8,6 +8,7 @@ Please send cflow bug reports to <bug-cflow@gnu.org>.
Version 1.4.90 (Git)
* Correctly handle functions returning struct/union (fixes bug #31792)
+* Gracefully handle invalid inputs (fixes bug #44113)
* Debugging output goes to stderr
* Add a manpage
* Consistent use of exit codes
@@ -98,7 +99,7 @@ Initial version restored from 1997 snapshots.
----------------------------------------------------------------------
* Copyright information:
-Copyright (C) 2005, 2006, 2007, 2009, 2010, 2011 Sergey Poznyakoff
+Copyright (C) 2005-2007, 2009, 2010, 2011, 2016 Sergey Poznyakoff
Permission is granted to anyone to make or distribute verbatim copies
of this document as received, in any medium, provided that the
diff --git a/README b/README
index 7f4cb3c..76f65c6 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
GNU cflow README
-Copyright (C) 2005, 2010-2011, 2014-2015 Sergey Poznyakoff
+Copyright (C) 2005, 2010-2011, 2014-2016 Sergey Poznyakoff
See the end of file for copying conditions.
* Introduction
diff --git a/README-alpha b/README-alpha
index e44af26..b485b0d 100644
--- a/README-alpha
+++ b/README-alpha
@@ -71,7 +71,7 @@ Now set your breakpoints and proceed as usual.
* Copyright information:
-Copyright (C) 2005, 2007, 2009-2010, 2014-2015 Sergey Poznyakoff
+Copyright (C) 2005, 2007, 2009-2010, 2014-2016 Sergey Poznyakoff
Permission is granted to anyone to make or distribute verbatim copies
of this document as received, in any medium, provided that the
diff --git a/README-hacking b/README-hacking
index f50079c..c99ce7f 100644
--- a/README-hacking
+++ b/README-hacking
@@ -39,8 +39,7 @@ Enjoy!
-----
-Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007,
-2009 Free Software Foundation, Inc.
+Copyright (C) 2002-2007, 2009, 2016 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/acinclude.m4 b/acinclude.m4
index 840f88b..ac0a41f 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1,5 +1,5 @@
dnl This file is part of GNU mailutils.
-dnl Copyright (C) 2001 Free Software Foundation, Inc.
+dnl Copyright (C) 2001, 2016 Free Software Foundation, Inc.
dnl
dnl This file is free software; as a special exception the author gives
dnl unlimited permission to copy and/or distribute it, with or without
diff --git a/bootstrap b/bootstrap
index fdbcbb7..a63b4cb 100755
--- a/bootstrap
+++ b/bootstrap
@@ -2,7 +2,7 @@
# Bootstrap this package from checked-out sources.
-# Copyright (C) 2003-2009 Free Software Foundation, Inc.
+# Copyright (C) 2003-2009, 2016 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/bootstrap.conf b/bootstrap.conf
index 408ba46..51630ca 100644
--- a/bootstrap.conf
+++ b/bootstrap.conf
@@ -1,5 +1,5 @@
# Bootstrap configuration.
-# Copyright (C) 2006, 2007, 2009 Free Software Foundation, Inc.
+# Copyright (C) 2006-2007, 2009, 2016 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/configure.ac b/configure.ac
index 2a2d222..4909b05 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,6 @@
# This file is part of GNU cflow
-# Copyright (C) 2005, 2007, 2009, 2011, 2014, 2015 Free Software Foundation, Inc.
+# Copyright (C) 2005, 2007, 2009, 2011, 2014-2016 Free Software
+# Foundation, Inc.
#
# Written by Sergey Poznyakoff
#
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 8da86f7..5f2c00c 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,5 +1,5 @@
# This file is part of GNU cflow
-# Copyright (C) 2005, 2007, 2014, 2015 Free Software Foundation, Inc.
+# Copyright (C) 2005, 2007, 2014-2016 Free Software Foundation, Inc.
#
# Written by Sergey Poznyakoff
#
diff --git a/doc/cflow.1 b/doc/cflow.1
index f41b748..5578e2d 100644
--- a/doc/cflow.1
+++ b/doc/cflow.1
@@ -1,5 +1,5 @@
.\" This file is part of Cflow -*- nroff -*-
-.\" Copyright (C) 2014-2015 Sergey Poznyakoff
+.\" Copyright (C) 2014-2016 Sergey Poznyakoff
.\"
.\" Cflow 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/doc/cflow.texi b/doc/cflow.texi
index 9574e7a..5ddaf40 100644
--- a/doc/cflow.texi
+++ b/doc/cflow.texi
@@ -30,7 +30,7 @@ Published by the Free Software Foundation,
51 Franklin Street, Fifth Floor
Boston, MA 02110-1301, USA
-Copyright @copyright{} 2005, 2010, 2014-2015 Sergey Poznyakoff
+Copyright @copyright{} 2005, 2010, 2014-2016 Sergey Poznyakoff
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.2 or
diff --git a/doc/fdl.texi b/doc/fdl.texi
index 0bc43a1..1b837b4 100644
--- a/doc/fdl.texi
+++ b/doc/fdl.texi
@@ -2,7 +2,7 @@
@center Version 1.2, November 2002
@display
-Copyright @copyright{} 2000,2001,2002 Free Software Foundation, Inc.
+Copyright @copyright{} 2000-2002, 2016 Free Software Foundation, Inc.
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
Everyone is permitted to copy and distribute verbatim copies
diff --git a/doc/gendocs.sh b/doc/gendocs.sh
index 8ac3a06..54ce779 100755
--- a/doc/gendocs.sh
+++ b/doc/gendocs.sh
@@ -4,8 +4,7 @@
scriptversion=2015-02-28.17
-# Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
-# Free Software Foundation, Inc.
+# Copyright 2003-2013, 2016 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/doc/gendocs_template b/doc/gendocs_template
index d52a99e..288e581 100755
--- a/doc/gendocs_template
+++ b/doc/gendocs_template
@@ -91,7 +91,7 @@ Please send broken links and other corrections (or suggestions) to
</p>
<p>
-Copyright (C) 2005 Free Software Foundation, Inc.,
+Copyright (C) 2005, 2016 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02111, USA
<br />
Verbatim copying and distribution of this entire article is
diff --git a/elisp/Makefile.am b/elisp/Makefile.am
index 42aa15b..da6dfcb 100644
--- a/elisp/Makefile.am
+++ b/elisp/Makefile.am
@@ -1,5 +1,5 @@
# This file is part of GNU cflow
-# Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+# Copyright (C) 2005, 2007, 2016 Free Software Foundation, Inc.
#
# Written by Sergey Poznyakoff
#
diff --git a/elisp/cflow-mode.el b/elisp/cflow-mode.el
index bb5f55c..3a6034f 100644
--- a/elisp/cflow-mode.el
+++ b/elisp/cflow-mode.el
@@ -6,7 +6,7 @@
;; $Id$
;; This file is part of GNU cflow
-;; Copyright (C) 1994-1995, 2005, 2007, 2010, 2014-2015 Sergey
+;; Copyright (C) 1994-1995, 2005, 2007, 2010, 2014-2016 Sergey
;; Poznyakoff
;; GNU cflow is free software; you can redistribute it and/or modify
diff --git a/src/Makefile.am b/src/Makefile.am
index e7f0b85..4caf613 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,5 +1,5 @@
# This file is part of GNU cflow
-# Copyright (C) 2005, 2007, 2009 Free Software Foundation, Inc.
+# Copyright (C) 2005, 2007, 2009, 2016 Free Software Foundation, Inc.
#
# Written by Sergey Poznyakoff
#
diff --git a/src/c.l b/src/c.l
index 3387253..ff7d572 100644
--- a/src/c.l
+++ b/src/c.l
@@ -1,5 +1,5 @@
/* This file is part of GNU cflow
- Copyright (C) 1997, 2005, 2007, 2010, 2014-2015 Sergey Poznyakoff
+ Copyright (C) 1997, 2005, 2007, 2010, 2014-2016 Sergey Poznyakoff
GNU cflow 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/cflow.h b/src/cflow.h
index 2768cb5..5867a18 100644
--- a/src/cflow.h
+++ b/src/cflow.h
@@ -1,5 +1,5 @@
/* This file is part of GNU cflow
- Copyright (C) 1997, 2005, 2007, 2009-2010, 2014-2015 Sergey
+ Copyright (C) 1997, 2005, 2007, 2009-2010, 2014-2016 Sergey
Poznyakoff
GNU cflow is free software; you can redistribute it and/or modify
diff --git a/src/depmap.c b/src/depmap.c
index 63417a9..578d0e0 100644
--- a/src/depmap.c
+++ b/src/depmap.c
@@ -1,5 +1,5 @@
/* This file is part of GNU cflow.
- Copyright (C) 2008-2010, 2014-2015 Sergey Poznyakoff
+ Copyright (C) 2008-2010, 2014-2016 Sergey Poznyakoff
GNU cflow 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/gnu.c b/src/gnu.c
index e27e006..54a6e55 100644
--- a/src/gnu.c
+++ b/src/gnu.c
@@ -1,5 +1,5 @@
/* This file is part of GNU cflow
- Copyright (C) 1997, 2005, 2007, 2010, 2014-2015 Sergey Poznyakoff
+ Copyright (C) 1997, 2005, 2007, 2010, 2014-2016 Sergey Poznyakoff
GNU cflow 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/linked-list.c b/src/linked-list.c
index 0dc43f7..095b63e 100644
--- a/src/linked-list.c
+++ b/src/linked-list.c
@@ -1,5 +1,5 @@
/* This file is part of GNU cflow
- Copyright (C) 1997, 2005-2007, 2009-2010, 2014-2015 Sergey Poznyakoff
+ Copyright (C) 1997, 2005-2007, 2009-2010, 2014-2016 Sergey Poznyakoff
GNU cflow 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/main.c b/src/main.c
index 1ad6a04..82f9413 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,5 +1,5 @@
/* This file is part of GNU cflow
- Copyright (C) 1997, 2005, 2007, 2009-2011, 2014-2015 Sergey
+ Copyright (C) 1997, 2005, 2007, 2009-2011, 2014-2016 Sergey
Poznyakoff
GNU cflow is free software; you can redistribute it and/or modify
diff --git a/src/output.c b/src/output.c
index 5ed86b5..f0146f1 100644
--- a/src/output.c
+++ b/src/output.c
@@ -1,5 +1,5 @@
/* This file is part of GNU cflow
- Copyright (C) 1997, 2005, 2007, 2009-2011, 2014-2015 Sergey
+ Copyright (C) 1997, 2005, 2007, 2009-2011, 2014-2016 Sergey
Poznyakoff
GNU cflow is free software; you can redistribute it and/or modify
diff --git a/src/parser.h b/src/parser.h
index 809bf24..618f24d 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -1,5 +1,5 @@
/* This file is part of GNU cflow
- * Copyright (C) 1997, 2007, 2010, 2014-2015 Sergey Poznyakoff
+ * Copyright (C) 1997, 2007, 2010, 2014-2016 Sergey Poznyakoff
*
* GNU cflow 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/posix.c b/src/posix.c
index da929df..ce80ee3 100644
--- a/src/posix.c
+++ b/src/posix.c
@@ -1,5 +1,5 @@
/* This file is part of GNU cflow
- Copyright (C) 1997, 2005, 2007, 2010, 2014-2015 Sergey Poznyakoff
+ Copyright (C) 1997, 2005, 2007, 2010, 2014-2016 Sergey Poznyakoff
GNU cflow 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/rc.c b/src/rc.c
index eda1f8f..37cd74b 100644
--- a/src/rc.c
+++ b/src/rc.c
@@ -1,5 +1,5 @@
/* This file is part of GNU cflow
- Copyright (C) 1997, 2005, 2007, 2010, 2014-2015 Sergey Poznyakoff
+ Copyright (C) 1997, 2005, 2007, 2010, 2014-2016 Sergey Poznyakoff
GNU cflow 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/symbol.c b/src/symbol.c
index d26c399..6d31801 100644
--- a/src/symbol.c
+++ b/src/symbol.c
@@ -1,5 +1,5 @@
/* This file is part of GNU cflow
- Copyright (C) 1997, 2005-2007, 2009-2010, 2014-2015 Sergey Poznyakoff
+ Copyright (C) 1997, 2005-2007, 2009-2010, 2014-2016 Sergey Poznyakoff
GNU cflow 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/wordsplit.c b/src/wordsplit.c
index 7c6f64b..cfbbc1f 100644
--- a/src/wordsplit.c
+++ b/src/wordsplit.c
@@ -1,5 +1,5 @@
/* wordsplit - a word splitter
- Copyright (C) 2009-2012, 2015 Sergey Poznyakoff
+ Copyright (C) 2009-2012, 2015-2016 Sergey Poznyakoff
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 the
diff --git a/src/wordsplit.h b/src/wordsplit.h
index f5f82cf..dc62046 100644
--- a/src/wordsplit.h
+++ b/src/wordsplit.h
@@ -1,5 +1,5 @@
/* wordsplit - a word splitter
- Copyright (C) 2009-2012, 2015 Sergey Poznyakoff
+ Copyright (C) 2009-2012, 2015-2016 Sergey Poznyakoff
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 the

Return to:

Send suggestions and report system problems to the System administrator.