From: Richard M. Stallman Date: Sun, 22 Sep 1996 04:58:35 +0000 (+0000) Subject: (main): Add copyright etc. to --version output. X-Git-Tag: emacs-20.1~3666 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b455c665da56178e817c364a25bcbc2a6cd98d47;p=emacs.git (main): Add copyright etc. to --version output. --- diff --git a/src/emacs.c b/src/emacs.c index 4aa3f5d620d..f5dcaf06c66 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -456,6 +456,12 @@ main (argc, argv, envp) else { printf ("GNU Emacs %s\n", XSTRING (tem)->data); + printf ("Copyright (C) 1996 Free Software Foundation, Inc.\n"); + printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n"); + printf ("You may redistribute copies of Emacs\n"); + printf ("under the terms of the GNU General Public License.\n"); + printf ("For more information about these matters, "); + printf ("see the files named COPYING.\n"); exit (0); } }