1
Fork 0
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:
Glenn Morris 2014-11-23 17:11:51 -08:00
parent 825351bcce
commit e01ec2ed08
2 changed files with 5 additions and 3 deletions

View file

@ -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.

View file

@ -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");