]> git.eshelyaron.com Git - emacs.git/commitdiff
(main) [MAC_OSX]: Change working directory to home
authorYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Wed, 23 Nov 2005 07:19:03 +0000 (07:19 +0000)
committerYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Wed, 23 Nov 2005 07:19:03 +0000 (07:19 +0000)
directory if `-psn_*' option is specified.

src/emacs.c

index d3e16c046db099cffe50ad3ecf63625156718eae..25d9ae457308316714e483530b73c284bba5dadc 100644 (file)
@@ -962,9 +962,15 @@ main (argc, argv
 
 #ifdef MAC_OSX
   /* Skip process serial number passed in the form -psn_x_y as
-     command-line argument.  */
+     command-line argument.  The WindowServer adds this option when
+     Emacs is invoked from the Finder or by the `open' command.  In
+     these cases, the working directory becomes `/', so we change it
+     to the user's home directory.  */
   if (argc > skip_args + 1 && strncmp (argv[skip_args+1], "-psn_", 5) == 0)
-    skip_args++;
+    {
+      chdir (getenv ("HOME"));
+      skip_args++;
+    }
 #endif /* MAC_OSX */
 
 #ifdef VMS