Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [RFA] Copyright year in startup message ...
@ 2005-11-22 19:36 Joel Brobecker
  2005-11-22 19:56 ` Daniel Jacobowitz
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Joel Brobecker @ 2005-11-22 19:36 UTC (permalink / raw)
  To: gdb-patches

Mark just pointed out to me that the copyright year in the startup
message printed by GDB is still 2004. I think the year should be updated
at the begining of the year, at the same time as we rotate the ChangeLog.
Agreed? (in which case we should insert a section with the procedure to
follow at the start of each year)

2005-11-22  Joel Brobecker  <brobecker@adacore.com>

        * top.c (print_gdb_version): Update copyright year.

OK for mainline and branch?

Thanks,
-- 
Joel


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFA] Copyright year in startup message ...
  2005-11-22 19:36 [RFA] Copyright year in startup message Joel Brobecker
@ 2005-11-22 19:56 ` Daniel Jacobowitz
  2005-11-22 20:02   ` Joel Brobecker
  2005-11-22 20:08 ` Mark Kettenis
  2005-12-07 18:38 ` Stan Shebs
  2 siblings, 1 reply; 5+ messages in thread
From: Daniel Jacobowitz @ 2005-11-22 19:56 UTC (permalink / raw)
  To: Joel Brobecker; +Cc: gdb-patches

On Tue, Nov 22, 2005 at 11:20:34AM -0800, Joel Brobecker wrote:
> Mark just pointed out to me that the copyright year in the startup
> message printed by GDB is still 2004. I think the year should be updated
> at the begining of the year, at the same time as we rotate the ChangeLog.
> Agreed? (in which case we should insert a section with the procedure to
> follow at the start of each year)
> 
> 2005-11-22  Joel Brobecker  <brobecker@adacore.com>
> 
>         * top.c (print_gdb_version): Update copyright year.
> 
> OK for mainline and branch?

No patch attached, but yes, this is fine.

-- 
Daniel Jacobowitz
CodeSourcery, LLC


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFA] Copyright year in startup message ...
  2005-11-22 19:56 ` Daniel Jacobowitz
@ 2005-11-22 20:02   ` Joel Brobecker
  0 siblings, 0 replies; 5+ messages in thread
From: Joel Brobecker @ 2005-11-22 20:02 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 354 bytes --]

> > 2005-11-22  Joel Brobecker  <brobecker@adacore.com>
> > 
> >         * top.c (print_gdb_version): Update copyright year.
> > 
> > OK for mainline and branch?
> 
> No patch attached, but yes, this is fine.

Humpf, too many things at the same time. Attached this time, and checked
in. Thanks!

I will followup with a patch to gdbint shortly.

-- 
Joel

[-- Attachment #2: version.diff --]
[-- Type: text/plain, Size: 658 bytes --]

Index: top.c
===================================================================
RCS file: /cvs/src/src/gdb/top.c,v
retrieving revision 1.107
diff -u -p -r1.107 top.c
--- top.c	7 Nov 2005 15:27:07 -0000	1.107
+++ top.c	22 Nov 2005 19:17:45 -0000
@@ -1064,7 +1064,7 @@ print_gdb_version (struct ui_file *strea
 
   /* Second line is a copyright notice. */
 
-  fprintf_filtered (stream, "Copyright 2004 Free Software Foundation, Inc.\n");
+  fprintf_filtered (stream, "Copyright 2005 Free Software Foundation, Inc.\n");
 
   /* Following the copyright is a brief statement that the program is
      free software, that users are free to copy and change it on

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFA] Copyright year in startup message ...
  2005-11-22 19:36 [RFA] Copyright year in startup message Joel Brobecker
  2005-11-22 19:56 ` Daniel Jacobowitz
@ 2005-11-22 20:08 ` Mark Kettenis
  2005-12-07 18:38 ` Stan Shebs
  2 siblings, 0 replies; 5+ messages in thread
From: Mark Kettenis @ 2005-11-22 20:08 UTC (permalink / raw)
  To: brobecker; +Cc: gdb-patches

> Date: Tue, 22 Nov 2005 11:20:34 -0800
> From: Joel Brobecker <brobecker@adacore.com>
> 
> Mark just pointed out to me that the copyright year in the startup
> message printed by GDB is still 2004. I think the year should be updated
> at the begining of the year, at the same time as we rotate the ChangeLog.
> Agreed? (in which case we should insert a section with the procedure to
> follow at the start of each year)
> 
> 2005-11-22  Joel Brobecker  <brobecker@adacore.com>
> 
>         * top.c (print_gdb_version): Update copyright year.
> 
> OK for mainline and branch?
 
Sounds fine to me :).

Mark


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFA] Copyright year in startup message ...
  2005-11-22 19:36 [RFA] Copyright year in startup message Joel Brobecker
  2005-11-22 19:56 ` Daniel Jacobowitz
  2005-11-22 20:08 ` Mark Kettenis
@ 2005-12-07 18:38 ` Stan Shebs
  2 siblings, 0 replies; 5+ messages in thread
From: Stan Shebs @ 2005-12-07 18:38 UTC (permalink / raw)
  To: Joel Brobecker; +Cc: gdb-patches

Joel Brobecker wrote:

>Mark just pointed out to me that the copyright year in the startup
>message printed by GDB is still 2004. I think the year should be updated
>at the begining of the year, at the same time as we rotate the ChangeLog.
>Agreed? (in which case we should insert a section with the procedure to
>follow at the start of each year)
>
This is unbelievably picayune, but technically the copyright year
shouldn't actually get changed until somebody changes something in
a source file (rotating the changelog wouldn't count). Empirically
this almost always happens within the first few days of the year,
so the window to notice the discrepancy is pretty small.

Stan


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-12-07  1:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-11-22 19:36 [RFA] Copyright year in startup message Joel Brobecker
2005-11-22 19:56 ` Daniel Jacobowitz
2005-11-22 20:02   ` Joel Brobecker
2005-11-22 20:08 ` Mark Kettenis
2005-12-07 18:38 ` Stan Shebs

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox