aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-08-05 19:26:04 +0000
committerGerd Moellmann2000-08-05 19:26:04 +0000
commit93184560519f71e9bda5d066304dbc6444925b7a (patch)
tree1c32be4745aef3d6a65edb076c6f7141c7359527 /src
parent36cc2d3834ce57748f38b69654fbcb2271e1a9a6 (diff)
downloademacs-93184560519f71e9bda5d066304dbc6444925b7a.tar.gz
emacs-93184560519f71e9bda5d066304dbc6444925b7a.zip
(Finsert_file_contents): Use xfree instead of free.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 54b719b4c6c..c6cea759bf4 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -4039,7 +4039,7 @@ actually used.")
4039 /* Set `inserted' to the number of inserted characters. */ 4039 /* Set `inserted' to the number of inserted characters. */
4040 inserted = PT - temp; 4040 inserted = PT - temp;
4041 4041
4042 free (conversion_buffer); 4042 xfree (conversion_buffer);
4043 emacs_close (fd); 4043 emacs_close (fd);
4044 specpdl_ptr--; 4044 specpdl_ptr--;
4045 4045