comparison lib-src/etags.c @ 68647:3661e9b3c48f

Update years in copyright notice; nfc.
author Thien-Thi Nguyen <ttn@gnuvola.org>
date Mon, 06 Feb 2006 11:28:28 +0000
parents bf8620d8ff03
children f7ef1c0da4f9 c5406394f567
comparison
equal deleted inserted replaced
68646:f2da1c2bfa78 68647:3661e9b3c48f
1 /* Tags file maker to go with GNU Emacs -*- coding: latin-1 -*- 1 /* Tags file maker to go with GNU Emacs -*- coding: latin-1 -*-
2 Copyright (C) 1984, 1987, 1988, 1989, 1993, 1994, 1995, 2 Copyright (C) 1984, 1987, 1988, 1989, 1993, 1994, 1995,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 3 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005 Free Software Foundation, Inc. and Ken Arnold 4 2005, 2006 Free Software Foundation, Inc. and Ken Arnold
5 5
6 This file is not considered part of GNU Emacs. 6 This file is not considered part of GNU Emacs.
7 7
8 This program is free software; you can redistribute it and/or modify 8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by 9 it under the terms of the GNU General Public License as published by
856 #endif 856 #endif
857 static void 857 static void
858 print_version () 858 print_version ()
859 { 859 {
860 printf ("%s (%s %s)\n", (CTAGS) ? "ctags" : "etags", EMACS_NAME, VERSION); 860 printf ("%s (%s %s)\n", (CTAGS) ? "ctags" : "etags", EMACS_NAME, VERSION);
861 puts ("Copyright (C) 2002 Free Software Foundation, Inc. and Ken Arnold"); 861 puts ("Copyright (C) 2006 Free Software Foundation, Inc. and Ken Arnold");
862 puts ("This program is distributed under the same terms as Emacs"); 862 puts ("This program is distributed under the same terms as Emacs");
863 863
864 exit (EXIT_SUCCESS); 864 exit (EXIT_SUCCESS);
865 } 865 }
866 866