mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-19 01:10:57 -08:00
* src/emacs.c (main) <--version>: Make use of PACKAGE_NAME.
This commit is contained in:
parent
825351bcce
commit
e01ec2ed08
2 changed files with 5 additions and 3 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2014-11-24 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* emacs.c (main) <--version>: Make use of PACKAGE_NAME.
|
||||
|
||||
* Makefile.in (emacs.res): Use ../nt rule, rather than duplicating it.
|
||||
(ntsource, WINDRES, EMACS_MANIFEST): Remove, now unused.
|
||||
|
||||
|
|
|
|||
|
|
@ -803,10 +803,10 @@ main (int argc, char **argv)
|
|||
version = emacs_version;
|
||||
copyright = emacs_copyright;
|
||||
}
|
||||
printf ("GNU Emacs %s\n", version);
|
||||
printf ("%s %s\n", PACKAGE_NAME, version);
|
||||
printf ("%s\n", copyright);
|
||||
printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
|
||||
printf ("You may redistribute copies of Emacs\n");
|
||||
printf ("%s comes with ABSOLUTELY NO WARRANTY.\n", PACKAGE_NAME);
|
||||
printf ("You may redistribute copies of %s\n", PACKAGE_NAME);
|
||||
printf ("under the terms of the GNU General Public License.\n");
|
||||
printf ("For more information about these matters, ");
|
||||
printf ("see the file named COPYING.\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue