From: Richard M. Stallman Date: Sun, 30 Apr 1995 23:50:15 +0000 (+0000) Subject: (main): Delete duplicate code for -version. X-Git-Tag: emacs-19.34~4224 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=221cbd7d497d6e24e119b607099134bd22fc4a77;p=emacs.git (main): Delete duplicate code for -version. (standard_args): Add -help and -version. --- diff --git a/src/emacs.c b/src/emacs.c index 5f5251c238d..686a784e10c 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -927,16 +927,6 @@ Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\ tzset (); #endif /* defined (sun) || defined (LOCALTIME_CACHE) */ - /* Handle the GNU standard option --version. */ - if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args)) - { - Lisp_Object ver; - ver = call0 (intern ("emacs-version")); - if (STRINGP (ver)) - printf ("%s\n", XSTRING (ver)->data); - exit (0); - } - /* Enter editor command loop. This never returns. */ Frecursive_edit (); /* NOTREACHED */ @@ -957,6 +947,8 @@ struct standard_args struct standard_args standard_args[] = { + { "-version", "--version", 110, 0 }, + { "-help", "--help", 110, 0 }, { "-nl", "--no-shared-memory", 100, 0 }, #ifdef VMS { "-map", "--map-data", 100, 0 },