aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog9
-rw-r--r--lib-src/etags.c5
2 files changed, 13 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index e14679ad820..597d203ba41 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,8 @@
12007-06-07 Glenn Morris <rgm@gnu.org>
2
3 * etags.c (print_version): Add `emacs_copyright' string, for
4 easier automatic updating.
5
12007-05-18 Francesco Potort,Al(B <pot@gnu.org> 62007-05-18 Francesco Potort,Al(B <pot@gnu.org>
2 7
3 * etags.c: Extern definitions of some more pointer functions for 8 * etags.c: Extern definitions of some more pointer functions for
@@ -10,6 +15,10 @@
10 15
11 * makefile.w32-in (VERSION): Increase to 22.1.50. 16 * makefile.w32-in (VERSION): Increase to 22.1.50.
12 17
182007-06-02 Chong Yidong <cyd@stupidchicken.com>
19
20 * Version 22.1 released.
21
132007-02-26 Francesco Potort,Al(B <pot@gnu.org> 222007-02-26 Francesco Potort,Al(B <pot@gnu.org>
14 23
15 * Makefile.in (etags, ctags): Define EMACS_NAME as "GNU Emacs". 24 * Makefile.in (etags, ctags): Define EMACS_NAME as "GNU Emacs".
diff --git a/lib-src/etags.c b/lib-src/etags.c
index b85ec8d57a9..f3534e02d7c 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -887,8 +887,11 @@ etags --help --lang=ada.");
887static void 887static void
888print_version () 888print_version ()
889{ 889{
890 /* Makes it easier to update automatically. */
891 char emacs_copyright[] = "Copyright (C) 2007 Free Software Foundation, Inc.";
892
890 printf ("%s (%s %s)\n", (CTAGS) ? "ctags" : "etags", EMACS_NAME, VERSION); 893 printf ("%s (%s %s)\n", (CTAGS) ? "ctags" : "etags", EMACS_NAME, VERSION);
891 puts ("Copyright (C) 2007 Free Software Foundation, Inc."); 894 puts (emacs_copyright);
892 puts ("This program is distributed under the terms in ETAGS.README"); 895 puts ("This program is distributed under the terms in ETAGS.README");
893 896
894 exit (EXIT_SUCCESS); 897 exit (EXIT_SUCCESS);