From 3270ae6e9b7e47883cbe20cc3541ccc3a0546982 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 4 Jun 1998 06:09:59 +0000 Subject: [PATCH] (main): Don't implement --version if not initialized. --- src/emacs.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/emacs.c b/src/emacs.c index 3de28f12db..e998c853af 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -579,7 +579,10 @@ main (argc, argv, envp) sort_args (argc, argv); - if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args)) + if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args) + /* We don't know the version number unless this is a dumped Emacs. + So ignore --version otherwise. */ + && initialized) { Lisp_Object tem; tem = Fsymbol_value (intern ("emacs-version")); @@ -591,7 +594,7 @@ main (argc, argv, envp) else { printf ("GNU Emacs %s\n", XSTRING (tem)->data); - printf ("Copyright (C) 1997 Free Software Foundation, Inc.\n"); + printf ("Copyright (C) 1998 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"); -- 2.20.1