comparison lib-src/ebrowse.c @ 91327:606f2d163a64

Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-312
author Miles Bader <miles@gnu.org>
date Wed, 09 Jan 2008 01:21:15 +0000
parents f55f9811f5d7 8ae4fbed2ac6
children
comparison
equal deleted inserted replaced
91326:b1a63d7fa09c 91327:606f2d163a64
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
8 GNU Emacs is free software; you can redistribute it and/or modify 9 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by 10 it under the terms of the GNU General Public License as published by
3688 #endif 3689 #endif
3689 3690
3690 void 3691 void
3691 version () 3692 version ()
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 }
3698 3702
3699 3703