diff options
| author | Glenn Morris | 2007-06-07 07:25:14 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-06-07 07:25:14 +0000 |
| commit | d16c1140f4faa0e349d8cc9c39df20457809725d (patch) | |
| tree | bcf0840ee21fff3d6ecd7dad94d9f0199e1b83c5 | |
| parent | 5cf9ca93e59f1b8f8dba4f4049a7915accfbf913 (diff) | |
| download | emacs-d16c1140f4faa0e349d8cc9c39df20457809725d.tar.gz emacs-d16c1140f4faa0e349d8cc9c39df20457809725d.zip | |
(print_version): Add `emacs_copyright' string, for easier automatic
updating.
| -rw-r--r-- | lib-src/etags.c | 5 | ||||
| -rw-r--r-- | lisp/ChangeLog | 2 |
2 files changed, 6 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."); | |||
| 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); |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d3bd822771a..12fea46d14e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | 2 | ||
| 3 | * version.el (emacs-copyright): New constant. | 3 | * version.el (emacs-copyright): New constant. |
| 4 | 4 | ||
| 5 | * calc/calc-help.el (calc-full-help): Use emacs-copyright. | ||
| 6 | |||
| 5 | * emacs-lisp/bytecomp.el (byte-compile-warnings): Add new option | 7 | * emacs-lisp/bytecomp.el (byte-compile-warnings): Add new option |
| 6 | `make-local'. | 8 | `make-local'. |
| 7 | (byte-compile-warnings-safe-p): Add `make-local'. | 9 | (byte-compile-warnings-safe-p): Add `make-local'. |