comparison lib-src/etags.c @ 87549:f39c927f11aa

(print_version): Update copyright to 2008.
author Glenn Morris <rgm@gnu.org>
date Fri, 04 Jan 2008 03:09:38 +0000
parents ec0ef12211d9
children 606f2d163a64 2e2cf64c99ee
comparison
equal deleted inserted replaced
87548:305e4c696d79 87549:f39c927f11aa
27 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 27 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
28 IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 29
30 30
31 Copyright (C) 1984, 1987, 1988, 1989, 1993, 1994, 1995, 1998, 1999, 31 Copyright (C) 1984, 1987, 1988, 1989, 1993, 1994, 1995, 1998, 1999,
32 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 32 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
33 Free Software Foundation, Inc. 33 Free Software Foundation, Inc.
34 34
35 This file is not considered part of GNU Emacs. 35 This file is not considered part of GNU Emacs.
36 36
37 This program is free software; you can redistribute it and/or modify 37 This program is free software; you can redistribute it and/or modify
903 #endif 903 #endif
904 static void 904 static void
905 print_version () 905 print_version ()
906 { 906 {
907 /* Makes it easier to update automatically. */ 907 /* Makes it easier to update automatically. */
908 char emacs_copyright[] = "Copyright (C) 2007 Free Software Foundation, Inc."; 908 char emacs_copyright[] = "Copyright (C) 2008 Free Software Foundation, Inc.";
909 909
910 printf ("%s (%s %s)\n", (CTAGS) ? "ctags" : "etags", EMACS_NAME, VERSION); 910 printf ("%s (%s %s)\n", (CTAGS) ? "ctags" : "etags", EMACS_NAME, VERSION);
911 puts (emacs_copyright); 911 puts (emacs_copyright);
912 puts ("This program is distributed under the terms in ETAGS.README"); 912 puts ("This program is distributed under the terms in ETAGS.README");
913 913