diff options
author | Glenn Morris <rgm@gnu.org> | 2012-09-16 17:56:08 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-09-16 17:56:08 -0700 |
commit | 78f83752f50a2aa9944e60a5aceac4015eb3ca58 (patch) | |
tree | 48c1ff5a6e08a5d69ef36593de966018f229b01e /lib-src/ebrowse.c | |
parent | 48093eb9bca47488b6867e53a12e7cac37d6f5a6 (diff) | |
download | emacs-78f83752f50a2aa9944e60a5aceac4015eb3ca58.tar.gz |
Reduce the number of versioned files storing the short copyright string
* configure.ac (copyright): New output variable.
(COPYRIGHT): New AC_DEFINE.
* admin/admin.el (set-copyright): No more need to set copyrights for
nextstep, or .c files. Add configure.ac and config.nt.
* lib-src/ebrowse.c (version):
* lib-src/etags.c (print_version): Use COPYRIGHT.
* nextstep/templates/Info-gnustep.plist.in:
* nextstep/templates/InfoPlist.strings.in:
* nextstep/templates/Info.plist.in: Let configure set copyright.
* nt/config.nt (COPYRIGHT): New.
* src/emacs.c: Use COPYRIGHT.
Diffstat (limited to 'lib-src/ebrowse.c')
-rw-r--r-- | lib-src/ebrowse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index f8569fe3747..056ed471fde 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c @@ -3516,8 +3516,7 @@ usage (int error) static _Noreturn void version (void) { - /* Makes it easier to update automatically. */ - char emacs_copyright[] = "Copyright (C) 2012 Free Software Foundation, Inc."; + char emacs_copyright[] = COPYRIGHT; printf ("ebrowse %s\n", VERSION); puts (emacs_copyright); |