aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorMiles Bader <[email protected]>2007-06-11 01:00:07 +0000
committerMiles Bader <[email protected]>2007-06-11 01:00:07 +0000
commit67f3ad67ee317226cb5d1bb139de0cfd883fdc5e (patch)
tree58a0e1bea7a1d8728fd32e6127a44434e7eac006 /lib-src
parentd17cf4eb2024cf54e4a216312184665094ee3df4 (diff)
parent2d715b39ea1c89066f469405d065dd1a6631d28e (diff)
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 781-792) - Update from CVS - Merge from gnus--rel--5.10 - Merge from emacs--rel--22 * emacs--rel--22 (patch 33-41) * gnus--rel--5.10 (patch 226-228) - Update from CVS Revision: [email protected]/emacs--multi-tty--0--patch-21
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 e14679ad82..597d203ba4 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,8 @@
+2007-06-07 Glenn Morris <[email protected]>
+
+ * etags.c (print_version): Add `emacs_copyright' string, for
+ easier automatic updating.
+
2007-05-18 Francesco Potort,Al(B <[email protected]>
* etags.c: Extern definitions of some more pointer functions for
@@ -10,6 +15,10 @@
* makefile.w32-in (VERSION): Increase to 22.1.50.
+2007-06-02 Chong Yidong <[email protected]>
+
+ * Version 22.1 released.
+
2007-02-26 Francesco Potort,Al(B <[email protected]>
* Makefile.in (etags, ctags): Define EMACS_NAME as "GNU Emacs".
diff --git a/lib-src/etags.c b/lib-src/etags.c
index b85ec8d57a..f3534e02d7 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -887,8 +887,11 @@ etags --help --lang=ada.");
static void
print_version ()
{
+ /* Makes it easier to update automatically. */
+ char emacs_copyright[] = "Copyright (C) 2007 Free Software Foundation, Inc.";
+
printf ("%s (%s %s)\n", (CTAGS) ? "ctags" : "etags", EMACS_NAME, VERSION);
- puts ("Copyright (C) 2007 Free Software Foundation, Inc.");
+ puts (emacs_copyright);
puts ("This program is distributed under the terms in ETAGS.README");
exit (EXIT_SUCCESS);