aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1998-03-03 07:18:46 +0000
committerKenichi Handa1998-03-03 07:18:46 +0000
commit8d0243456de73ce49bd94988cbdd96d9ff60f787 (patch)
tree34bfa4be1d5b41e523339ceb80394a5d2d8e8322 /src
parenta4e91443c2b48c56cf8b2d29a4feaa75b156e619 (diff)
downloademacs-8d0243456de73ce49bd94988cbdd96d9ff60f787.tar.gz
emacs-8d0243456de73ce49bd94988cbdd96d9ff60f787.zip
(Vdefault_file_name_coding_system): Extern it.
(Fcall_process): Use ENCODE_FILE.
Diffstat (limited to 'src')
-rw-r--r--src/callproc.c5
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
121extern Lisp_Object Vdoc_file_name; 121extern Lisp_Object Vdoc_file_name;
122 122
123extern Lisp_Object Vfile_name_coding_system; 123extern 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