1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 04:30:45 -08:00

(delete_temp_file): Use Fdelete_file.

This commit is contained in:
Richard M. Stallman 1994-09-14 09:15:46 +00:00
parent 7930d72229
commit 59750d69f8

View file

@ -467,7 +467,9 @@ static Lisp_Object
delete_temp_file (name)
Lisp_Object name;
{
unlink (XSTRING (name)->data);
/* Use Fdelete_file because that runs a file name handler.
We did that when writing the file, so we should do so when deleting. */
Fdelete_file (name);
}
DEFUN ("call-process-region", Fcall_process_region, Scall_process_region,