(Fcall_process_region) [DOS_NT]: Avoid downcasing
the `X' characters in the template passed to `mktemp'.
This commit is contained in:
parent
7fd85d5604
commit
5711b5478c
1 changed files with 4 additions and 4 deletions
|
@ -650,15 +650,15 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
|
|||
}
|
||||
if (!IS_DIRECTORY_SEP (tempfile[strlen (tempfile) - 1]))
|
||||
strcat (tempfile, "/");
|
||||
if ('/' == DIRECTORY_SEP)
|
||||
dostounix_filename (tempfile);
|
||||
else
|
||||
unixtodos_filename (tempfile);
|
||||
#ifdef WINDOWSNT
|
||||
strcat (tempfile, "emXXXXXX");
|
||||
#else
|
||||
strcat (tempfile, "detmp.XXX");
|
||||
#endif
|
||||
if ('/' == DIRECTORY_SEP)
|
||||
dostounix_filename (tempfile);
|
||||
else
|
||||
unixtodos_filename (tempfile);
|
||||
#else /* not DOS_NT */
|
||||
|
||||
#ifdef VMS
|
||||
|
|
Loading…
Add table
Reference in a new issue