From: Gerd Moellmann Date: Sat, 5 Aug 2000 19:26:04 +0000 (+0000) Subject: (Finsert_file_contents): Use xfree instead of free. X-Git-Tag: emacs-pretest-21.0.90~2484 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=93184560519f71e9bda5d066304dbc6444925b7a;p=emacs.git (Finsert_file_contents): Use xfree instead of free. --- 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.") /* Set `inserted' to the number of inserted characters. */ inserted = PT - temp; - free (conversion_buffer); + xfree (conversion_buffer); emacs_close (fd); specpdl_ptr--;