]> git.eshelyaron.com Git - emacs.git/commitdiff
emacsclient: getopt minor cleanup
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 22 Nov 2018 02:37:44 +0000 (18:37 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 22 Nov 2018 02:38:20 +0000 (18:38 -0800)
* lib-src/emacsclient.c (shortopts): New constant.
(decode_options): Use it.  Do not assume EOF == -1.

lib-src/emacsclient.c

index 908602ec254f046ef9e20bfcffcda186913579dd..4ab97c3c50c1336bbeca036ec79beddf8fbb59f2 100644 (file)
@@ -153,6 +153,7 @@ static char const *frame_parameters;
 
 static _Noreturn void print_help_and_exit (void);
 
+/* Long command-line options.  */
 
 static struct option const longopts[] =
 {
@@ -177,6 +178,15 @@ static struct option const longopts[] =
   { 0, 0, 0, 0 }
 };
 
+/* Short options, in the same order as the corresponding long options.
+   There is no '-p' short option.  */
+static char const shortopts[] =
+  "nqueHVtca:F:"
+#ifndef NO_SOCKETS_IN_FILE_SYSTEM
+  "s:"
+#endif
+  "f:d:T:";
+
 \f
 /* Like malloc but get fatal error if memory is exhausted.  */
 
@@ -485,15 +495,8 @@ decode_options (int argc, char **argv)
 
   while (true)
     {
-      int opt = getopt_long_only (argc, argv,
-#ifndef NO_SOCKETS_IN_FILE_SYSTEM
-                            "VHnequa:s:f:d:F:tcT:",
-#else
-                            "VHnequa:f:d:F:tcT:",
-#endif
-                            longopts, 0);
-
-      if (opt == EOF)
+      int opt = getopt_long_only (argc, argv, shortopts, longopts, NULL);
+      if (opt < 0)
        break;
 
       switch (opt)