]> git.eshelyaron.com Git - emacs.git/commitdiff
* emacs.c (argmatch): Don't treat "--" as "--chdir".
authorJim Meyering <meyering@redhat.com>
Sun, 24 Oct 2010 16:00:57 +0000 (12:00 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 24 Oct 2010 16:00:57 +0000 (12:00 -0400)
src/ChangeLog
src/emacs.c

index 755a35a2713807f6c26ff3bf1e0f14ccd4cc9fba..4c7711e34b9c0ea725246e785d3d4795f9444b2b 100644 (file)
@@ -1,3 +1,7 @@
+2010-10-24  Jim Meyering  <jim@meyering.net>
+
+       * emacs.c (argmatch): Don't treat "--" as "--chdir".
+
 2010-10-24  Glenn Morris  <rgm@gnu.org>
 
        * w16select.c (syms_of_win16select) <selection-coding-system>:
index 70a0fae4ebfc5c59b816380b22de35c956263f65..e83725ccf033e18369e0ed1a292f30f6844f32fe 100644 (file)
@@ -829,13 +829,14 @@ main (int argc, char **argv)
       printf ("see the file named COPYING.\n");
       exit (0);
     }
-  if (argmatch (argv, argc, "-chdir", "--chdir", 2, &ch_to_dir, &skip_args))
-      if (chdir (ch_to_dir) == -1)
-        {
-          fprintf (stderr, "%s: Can't chdir to %s: %s\n",
-                   argv[0], ch_to_dir, strerror (errno));
-          exit (1);
-        }
+
+  if (argmatch (argv, argc, "-chdir", "--chdir", 4, &ch_to_dir, &skip_args))
+    if (chdir (ch_to_dir) == -1)
+      {
+       fprintf (stderr, "%s: Can't chdir to %s: %s\n",
+                argv[0], ch_to_dir, strerror (errno));
+       exit (1);
+      }
 
 
 #ifdef HAVE_PERSONALITY_LINUX32