From 8d0243456de73ce49bd94988cbdd96d9ff60f787 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 3 Mar 1998 07:18:46 +0000 Subject: [PATCH] (Vdefault_file_name_coding_system): Extern it. (Fcall_process): Use ENCODE_FILE. --- src/callproc.c | 5 ++--- 1 file 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; extern Lisp_Object Vdoc_file_name; -extern Lisp_Object Vfile_name_coding_system; +extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system; /* Clean up when exiting Fcall_process. 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.") Qnil)); } - current_dir - = Fencode_coding_string (current_dir, Vfile_name_coding_system, Qt); + current_dir = ENCODE_FILE (current_dir); #ifdef MSDOS /* MW, July 1993 */ /* ??? Someone who knows MSDOG needs to check whether this properly -- 2.39.2