]> git.eshelyaron.com Git - emacs.git/commitdiff
(call-process-region) [DOS_NT]: Use IS_DIRECTORY_SEP.
authorRichard M. Stallman <rms@gnu.org>
Thu, 15 Jun 1995 15:28:34 +0000 (15:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 15 Jun 1995 15:28:34 +0000 (15:28 +0000)
(call-process-region) [WINDOWSNT]: Use proper temp file template.

src/callproc.c

index 906674658f7c0c3a7f08eb2cd3a7ebfeeeaf579e..f87223c8d448050d218723c791f569040d00b8ea 100644 (file)
@@ -623,9 +623,13 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
       *tempfile = '\0';
     }
   dostounix_filename (tempfile);
-  if (tempfile[strlen (tempfile) - 1] != '/')
+  if (!IS_DIRECTORY_SEP (tempfile[strlen (tempfile) - 1]))
     strcat (tempfile, "/");
+#ifdef WINDOWSNT
+  strcat (tempfile, "emXXXXXX");
+#else
   strcat (tempfile, "detmp.XXX");
+#endif
 #else /* not DOS_NT */
 
 #ifdef VMS