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:
parent
7930d72229
commit
59750d69f8
1 changed files with 3 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue