diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 9 | ||||
| -rw-r--r-- | lib-src/etags.c | 5 |
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 @@ | |||
| 1 | 2007-06-07 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * etags.c (print_version): Add `emacs_copyright' string, for | ||
| 4 | easier automatic updating. | ||
| 5 | |||
| 1 | 2007-05-18 Francesco Potort,Al(B <pot@gnu.org> | 6 | 2007-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 | ||
| 18 | 2007-06-02 Chong Yidong <cyd@stupidchicken.com> | ||
| 19 | |||
| 20 | * Version 22.1 released. | ||
| 21 | |||
| 13 | 2007-02-26 Francesco Potort,Al(B <pot@gnu.org> | 22 | 2007-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."); | |||
| 887 | static void | 887 | static void |
| 888 | print_version () | 888 | print_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); |