summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-09-01 18:25:21 +0000
committerRichard M. Stallman <rms@gnu.org>1996-09-01 18:25:21 +0000
commitb69fda42bdaab964818f25bc3aaac08552fe91bc (patch)
treec515139e0b92113c57da63c145ee49b844bcfa15 /lib-src
parente53a5fe54fa4d57df7b6d67e5b70361431979fe8 (diff)
downloademacs-b69fda42bdaab964818f25bc3aaac08552fe91bc.tar.gz
(decode_options): New function.
(main, both versions): Call decode_options. (print_help_and_exit): New function. (VERSION): New macro
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/emacsclient.c114
1 files changed, 98 insertions, 16 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index c2940294ff9..20ba5217a5f 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -27,9 +27,86 @@ Boston, MA 02111-1307, USA. */
#undef close
#undef signal
+#include <stdio.h>
+#include <getopt.h>
+
+char *getenv (), *getwd ();
+char *getcwd ();
+int geteuid ();
+
+/* This is defined with -D from the compilation command,
+ which extracts it from ../lisp/version.el. */
+
+#ifndef VERSION
+#define VERSION "unspecified"
+#endif
+
+/* Name used to invoke this program. */
+char *progname;
+
+/* Nonzero means don't wait for a response from Emacs. --nowait. */
+int nowait = 0;
+
+struct option longopts[] =
+{
+ { "nowait", no_argument, NULL, 'n' },
+ { "help", no_argument, NULL, 'H' },
+ { "version", no_argument, NULL, 'V' },
+ { 0 }
+};
+
+/* Decode the options from argv and argc.
+ Return the number of remaining arguments. */
+
+int
+decode_options (argc, argv)
+ int argc;
+ char **argv;
+{
+ while (1)
+ {
+ int opt = getopt_long (argc, argv,
+ "VHn", longopts, 0);
+
+ if (opt == EOF)
+ break;
+
+ switch (opt)
+ {
+ case 0:
+ /* If getopt returns 0, then it has already processed a
+ long-named option. We should do nothing. */
+ break;
+
+ case 'n':
+ nowait = 1;
+ break;
+
+ case 'V':
+ fprintf (stderr, "Version %s\n", VERSION);
+ exit (1);
+ break;
+ case 'H':
+ default:
+ print_help_and_exit ();
+ }
+ }
+
+ return argc;
+}
+
+print_help_and_exit ()
+{
+ fprintf (stderr,
+ "Usage: %s [-n] [--nowait] [+linenumber] filename\n",
+ progname);
+ fprintf (stderr,
+ "Report bugs to bug-gnu-emacs@prep.ai.mit.edu.\n");
+ exit (1);
+}
+
#if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC)
-#include <stdio.h>
main (argc, argv)
int argc;
@@ -50,7 +127,6 @@ main (argc, argv)
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/stat.h>
-#include <stdio.h>
#include <errno.h>
extern char *strerror ();
@@ -67,17 +143,19 @@ main (argc, argv)
struct sockaddr_un server;
char *homedir, *cwd, *str;
char string[BUFSIZ];
+ int args_left;
- char *getenv (), *getwd ();
- char *getcwd ();
- int geteuid ();
- int nowait = 0;
+ progname = argv[0];
+
+ /* Process options. */
+ args_left = decode_options (argc, argv);
+
+ /* Advance argv and decrement argc for the options that were skipped. */
+ argv += argc - args_left;
+ argc = args_left;
if (argc < 2)
- {
- fprintf (stderr, "Usage: %s [+linenumber] filename\n", argv[0]);
- exit (1);
- }
+ print_help_and_exit ();
/*
* Open up an AF_UNIX socket in this person's home directory
@@ -239,14 +317,18 @@ main (argc, argv)
char gwdirb[BUFSIZ];
char *cwd;
char *temp;
- char *progname = argv[0];
- int nowait = 0;
+
+ progname = argv[0];
+
+ /* Process options. */
+ args_left = decode_options (argc, argv);
+
+ /* Advance argv and decrement argc for the options that were skipped. */
+ argv += argc - args_left;
+ argc = args_left;
if (argc < 2)
- {
- fprintf (stderr, "Usage: %s [+linenumber] filename\n", argv[0]);
- exit (1);
- }
+ print_help_and_exit ();
/*
* Create a message queue using ~/.emacs-server as the path for ftok