(Fstart_process): Expand PROGRAM.
authorRichard M. Stallman <rms@gnu.org>
Fri, 7 Jul 1995 13:34:16 +0000 (13:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 7 Jul 1995 13:34:16 +0000 (13:34 +0000)
Error if it is a directory.

src/process.c

index adecb58..02f8cc2 100644 (file)
@@ -1080,6 +1080,8 @@ Remaining arguments are strings to give program as arguments.")
 #else /* not VMS */
   new_argv = (unsigned char **) alloca ((nargs - 1) * sizeof (char *));
 
+  program = Fexpand_file_name (program, Qnil);
+
   /* If program file name is not absolute, search our path for it */
   if (!IS_DIRECTORY_SEP (XSTRING (program)->data[0])
       && !(XSTRING (program)->size > 1
@@ -1096,7 +1098,12 @@ Remaining arguments are strings to give program as arguments.")
       new_argv[0] = XSTRING (tem)->data;
     }
   else
-    new_argv[0] = XSTRING (program)->data;
+    {
+      if (!NILP (Ffile_directory_p (program)))
+       error ("Specified program for new process is a directory");
+
+      new_argv[0] = XSTRING (program)->data;
+    }
 
   for (i = 3; i < nargs; i++)
     {