aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/callproc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 04c390a6067..4ef634e4180 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -492,9 +492,9 @@ static Lisp_Object
492delete_temp_file (name) 492delete_temp_file (name)
493 Lisp_Object name; 493 Lisp_Object name;
494{ 494{
495 /* Use Fdelete_file because that runs a file name handler. 495 /* Use Fdelete_file (indirectly) because that runs a file name handler.
496 We did that when writing the file, so we should do so when deleting. */ 496 We did that when writing the file, so we should do so when deleting. */
497 Fdelete_file (name); 497 internal_delete_file (name);
498} 498}
499 499
500DEFUN ("call-process-region", Fcall_process_region, Scall_process_region, 500DEFUN ("call-process-region", Fcall_process_region, Scall_process_region,