This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch for copyright years in jv-scan, gij --version output


The GNU coding standards say that copyright notices in --version
output need only mention the most recent year in which changes were
made.  jv-scan and gij have both changed in 2001, so this patch
updates the copyright years in --version output.  Installed as obvious
on mainline and branch.

gcc/java:
2001-05-23  Joseph S. Myers  <jsm28@cam.ac.uk>

	* jv-scan.c (version): Update copyright year.

libjava:
2001-05-23  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gij.cc (version): Update copyright year.

diff -rupN GCC.orig/gcc/java/jv-scan.c GCC/gcc/java/jv-scan.c
--- GCC.orig/gcc/java/jv-scan.c	Mon Feb  5 08:14:23 2001
+++ GCC/gcc/java/jv-scan.c	Wed May 23 18:03:36 2001
@@ -119,7 +119,7 @@ static void
 version ()
 {
   printf ("jv-scan (%s)\n\n", version_string);
-  printf ("Copyright (C) 2000 Free Software Foundation, Inc.\n");
+  printf ("Copyright (C) 2001 Free Software Foundation, Inc.\n");
   printf ("This is free software; see the source for copying conditions.  There is NO\n");
   printf ("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n");
   exit (0);
diff -rupN GCC.orig/libjava/gij.cc GCC/libjava/gij.cc
--- GCC.orig/libjava/gij.cc	Thu Feb  8 01:30:44 2001
+++ GCC/libjava/gij.cc	Wed May 23 18:03:21 2001
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999, 2000  Free Software Foundation
+/* Copyright (C) 1999, 2000, 2001  Free Software Foundation
 
    This file is part of libgcj.
 
@@ -41,7 +41,7 @@ static void
 version ()
 {
   printf ("gij (GNU libgcj) version %s\n\n", VERSION);
-  printf ("Copyright (C) 1999, 2000 Free Software Foundation.\n");
+  printf ("Copyright (C) 2001 Free Software Foundation.\n");
   printf ("This is free software; see the source for copying conditions.  There is NO\n");
   printf ("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n");
   exit (0);

-- 
Joseph S. Myers
jsm28@cam.ac.uk


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]