From: Glenn Morris Date: Thu, 7 Jun 2007 07:25:14 +0000 (+0000) Subject: (print_version): Add `emacs_copyright' string, for easier automatic X-Git-Tag: emacs-pretest-23.0.90~12436 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d16c1140f4faa0e349d8cc9c39df20457809725d;p=emacs.git (print_version): Add `emacs_copyright' string, for easier automatic updating. --- 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."); 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); diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d3bd822771a..12fea46d14e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -2,6 +2,8 @@ * version.el (emacs-copyright): New constant. + * calc/calc-help.el (calc-full-help): Use emacs-copyright. + * emacs-lisp/bytecomp.el (byte-compile-warnings): Add new option `make-local'. (byte-compile-warnings-safe-p): Add `make-local'.