]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/emacs.c (main) <--version>: Make use of PACKAGE_NAME.
authorGlenn Morris <rgm@gnu.org>
Mon, 24 Nov 2014 01:11:51 +0000 (17:11 -0800)
committerGlenn Morris <rgm@gnu.org>
Mon, 24 Nov 2014 01:11:51 +0000 (17:11 -0800)
src/ChangeLog
src/emacs.c

index 8d5f78671d33458a7d2abf9808dbfb73c8c834fc..a4410161c5a649ce602d2fe96701f15edd066b81 100644 (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.
 
index 62f03c6ea12fa04f46023ef955eba3ff430b0488..da34eaac14b54562cec1efb222e70ac5af2e4c79 100644 (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");