[m-rev.] trivial diff: bump year in copyright messages
Julien Fischer
juliensf at csse.unimelb.edu.au
Wed Jan 3 13:34:29 AEDT 2007
Also, I've just noticed that the banner for mdb looks wrong - it
should be LGLP *not* GPL?
Estimated hours taken: 0
Branches: main
.README.in:
compiler/handle_options.m:
doc/reference_manual.texi:
doc/user_guide.texi:
profiler/mercury_profile.m:
trace/mercury_trace_internal.c:
Bump the year in the copyright messages.
Julien.
Index: .README.in
===================================================================
RCS file: /home/mercury/mercury1/repository/mercury/.README.in,v
retrieving revision 1.18
diff -u -r1.18 .README.in
--- .README.in 7 Sep 2006 08:32:17 -0000 1.18
+++ .README.in 3 Jan 2007 02:27:24 -0000
@@ -2,7 +2,7 @@
Mercury compiler, version @VERSION at .
The Mercury implementation is free software, but it is Copyright
- (C) 1993-2006 The University of Melbourne. It is distributed
+ (C) 1993-2007 The University of Melbourne. It is distributed
under the terms of the GNU General Public License. See the file
COPYING for copying permission.
Index: compiler/handle_options.m
===================================================================
RCS file: /home/mercury/mercury1/repository/mercury/compiler/handle_options.m,v
retrieving revision 1.287
diff -u -r1.287 handle_options.m
--- compiler/handle_options.m 5 Dec 2006 06:40:54 -0000 1.287
+++ compiler/handle_options.m 3 Jan 2007 02:24:48 -0000
@@ -1985,7 +1985,7 @@
library.version(Version),
io.write_strings([
"Mercury Compiler, version ", Version, "\n",
- "Copyright (C) 1993-2006 The University of Melbourne\n"
+ "Copyright (C) 1993-2007 The University of Melbourne\n"
], !IO).
usage(!IO) :-
@@ -2009,7 +2009,7 @@
% usage message, but there is no simple way to avoid that.
library.version(Version),
io.write_strings(["Mercury Compiler, version ", Version, "\n"], !IO),
- io.write_string("Copyright (C) 1993-2006 " ++
+ io.write_string("Copyright (C) 1993-2007 " ++
"The University of Melbourne\n", !IO),
io.write_string("Usage: mmc [<options>] <arguments>\n", !IO),
io.write_string("Arguments:\n", !IO),
Index: doc/reference_manual.texi
===================================================================
RCS file: /home/mercury/mercury1/repository/mercury/doc/reference_manual.texi,v
retrieving revision 1.373
diff -u -r1.373 reference_manual.texi
--- doc/reference_manual.texi 4 Dec 2006 04:30:50 -0000 1.373
+++ doc/reference_manual.texi 3 Jan 2007 02:26:26 -0000
@@ -15,7 +15,7 @@
@ifnottex
This file documents the Mercury programming language, version <VERSION>.
-Copyright (C) 1995-2006 The University of Melbourne.
+Copyright (C) 1995-2007 The University of Melbourne.
Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
@@ -52,7 +52,7 @@
@author Mark Brown
@page
@vskip 0pt plus 1filll
-Copyright @copyright{} 1995--2006 The University of Melbourne.
+Copyright @copyright{} 1995--2007 The University of Melbourne.
Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
Index: doc/user_guide.texi
===================================================================
RCS file: /home/mercury/mercury1/repository/mercury/doc/user_guide.texi,v
retrieving revision 1.503
diff -u -r1.503 user_guide.texi
--- doc/user_guide.texi 14 Dec 2006 04:35:53 -0000 1.503
+++ doc/user_guide.texi 3 Jan 2007 02:26:38 -0000
@@ -41,7 +41,7 @@
@ifnottex
This file documents the Mercury implementation, version <VERSION>.
-Copyright (C) 1995-2006 The University of Melbourne.
+Copyright (C) 1995-2007 The University of Melbourne.
Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
@@ -75,7 +75,7 @@
@author Ian MacLarty
@page
@vskip 0pt plus 1filll
-Copyright @copyright{} 1995--2006 The University of Melbourne.
+Copyright @copyright{} 1995--2007 The University of Melbourne.
Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
Index: profiler/mercury_profile.m
===================================================================
RCS file: /home/mercury/mercury1/repository/mercury/profiler/mercury_profile.m,v
retrieving revision 1.35
diff -u -r1.35 mercury_profile.m
--- profiler/mercury_profile.m 1 Dec 2006 15:04:39 -0000 1.35
+++ profiler/mercury_profile.m 3 Jan 2007 02:25:55 -0000
@@ -101,7 +101,7 @@
library.version(Version),
io.write_strings(StdErr, [
"Mercury Profiler, version ", Version, "\n",
- "Copyright (C) 1995-2006 The University of Melbourne\n",
+ "Copyright (C) 1995-2007 The University of Melbourne\n",
"Usage: ", ProgName, " [<options>] [<files>]\n",
"Use `", ProgName, " --help' for more information.\n"
], !IO).
@@ -113,7 +113,7 @@
library.version(Version),
io.write_strings([
"Mercury Profiler, version ", Version, "\n",
- "Copyright (C) 1995-2006 The University of Melbourne\n\n",
+ "Copyright (C) 1995-2007 The University of Melbourne\n\n",
"Usage: ", ProgName, "[<options>] [<files>]\n",
"\n",
"Description:\n",
Index: trace/mercury_trace_internal.c
===================================================================
RCS file: /home/mercury/mercury1/repository/mercury/trace/mercury_trace_internal.c,v
retrieving revision 1.230
diff -u -r1.230 mercury_trace_internal.c
--- trace/mercury_trace_internal.c 14 Dec 2006 04:36:03 -0000 1.230
+++ trace/mercury_trace_internal.c 3 Jan 2007 02:26:10 -0000
@@ -268,7 +268,7 @@
static const char MR_trace_banner[] =
"Melbourne Mercury Debugger, mdb version %s.\n\
-Copyright 1998-2006 The University of Melbourne, Australia.\n\
+Copyright 1998-2007 The University of Melbourne, Australia.\n\
mdb is free software, covered by the GNU General Public License.\n\
There is absolutely no warranty for mdb.\n";
--------------------------------------------------------------------------
mercury-reviews mailing list
Post messages to: mercury-reviews at csse.unimelb.edu.au
Administrative Queries: owner-mercury-reviews at csse.unimelb.edu.au
Subscriptions: mercury-reviews-request at csse.unimelb.edu.au
--------------------------------------------------------------------------
More information about the reviews
mailing list