diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/callproc.c b/src/callproc.c index 7dc30da41a8..625f35fc479 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -120,7 +120,7 @@ int synch_process_retcode; | |||
| 120 | 120 | ||
| 121 | extern Lisp_Object Vdoc_file_name; | 121 | extern Lisp_Object Vdoc_file_name; |
| 122 | 122 | ||
| 123 | extern Lisp_Object Vfile_name_coding_system; | 123 | extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system; |
| 124 | 124 | ||
| 125 | /* Clean up when exiting Fcall_process. | 125 | /* Clean up when exiting Fcall_process. |
| 126 | On MSDOS, delete the temporary file on any kind of termination. | 126 | On MSDOS, delete the temporary file on any kind of termination. |
| @@ -552,8 +552,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") | |||
| 552 | Qnil)); | 552 | Qnil)); |
| 553 | } | 553 | } |
| 554 | 554 | ||
| 555 | current_dir | 555 | current_dir = ENCODE_FILE (current_dir); |
| 556 | = Fencode_coding_string (current_dir, Vfile_name_coding_system, Qt); | ||
| 557 | 556 | ||
| 558 | #ifdef MSDOS /* MW, July 1993 */ | 557 | #ifdef MSDOS /* MW, July 1993 */ |
| 559 | /* ??? Someone who knows MSDOG needs to check whether this properly | 558 | /* ??? Someone who knows MSDOG needs to check whether this properly |