aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorGlenn Morris2007-06-07 07:25:14 +0000
committerGlenn Morris2007-06-07 07:25:14 +0000
commitd16c1140f4faa0e349d8cc9c39df20457809725d (patch)
treebcf0840ee21fff3d6ecd7dad94d9f0199e1b83c5 /lib-src
parent5cf9ca93e59f1b8f8dba4f4049a7915accfbf913 (diff)
downloademacs-d16c1140f4faa0e349d8cc9c39df20457809725d.tar.gz
emacs-d16c1140f4faa0e349d8cc9c39df20457809725d.zip
(print_version): Add `emacs_copyright' string, for easier automatic
updating.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/etags.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c
index b85ec8d57a9..aa5fda39396 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);