aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorGlenn Morris2008-01-04 03:10:02 +0000
committerGlenn Morris2008-01-04 03:10:02 +0000
commit969c3f6624772b14d6d3be05e205e27841f2760d (patch)
tree3dd67235b1153a1605cf1541fc8d6afd7485d9e7 /lib-src
parent461ff18d775e74f1489ec9ed3d36921bb7544068 (diff)
downloademacs-969c3f6624772b14d6d3be05e205e27841f2760d.tar.gz
emacs-969c3f6624772b14d6d3be05e205e27841f2760d.zip
(version) <emacs_copyright>: New variable. Just use current year for copyright.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ebrowse.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c
index ea230a9c3cd..2946dd3feba 100644
--- a/lib-src/ebrowse.c
+++ b/lib-src/ebrowse.c
@@ -1,7 +1,8 @@
1/* ebrowse.c --- parsing files for the ebrowse C++ browser 1/* ebrowse.c --- parsing files for the ebrowse C++ browser
2 2
3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. 4 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 Free Software Foundation, Inc.
5 6
6 This file is part of GNU Emacs. 7 This file is part of GNU Emacs.
7 8
@@ -3690,8 +3691,11 @@ usage (error)
3690void 3691void
3691version () 3692version ()
3692{ 3693{
3694 /* Makes it easier to update automatically. */
3695 char emacs_copyright[] = "Copyright (C) 2008 Free Software Foundation, Inc.";
3696
3693 printf ("ebrowse %s\n", VERSION); 3697 printf ("ebrowse %s\n", VERSION);
3694 puts ("Copyright (C) 1992-2007 Free Software Foundation, Inc."); 3698 puts (emacs_copyright);
3695 puts ("This program is distributed under the same terms as Emacs."); 3699 puts ("This program is distributed under the same terms as Emacs.");
3696 exit (EXIT_SUCCESS); 3700 exit (EXIT_SUCCESS);
3697} 3701}