changeset 30606:438ad5366a03

(Ftranspose_regions): Use xfree instead of free.
author Gerd Moellmann <gerd@gnu.org>
date Sat, 05 Aug 2000 19:26:20 +0000
parents 2bf69b38f4d3
children 7f8793e95bb0
files src/editfns.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/editfns.c	Sat Aug 05 19:26:04 2000 +0000
+++ b/src/editfns.c	Sat Aug 05 19:26:20 2000 +0000
@@ -3590,7 +3590,7 @@
           bcopy (start1_addr, start1_addr + len2_byte, len1_byte);
           bcopy (temp, start1_addr, len2_byte);
 	  if (len2_byte > 20000)
-	    free (temp);
+	    xfree (temp);
         }
       else
 	/* First region not smaller than second.  */
@@ -3605,7 +3605,7 @@
           bcopy (start2_addr, start1_addr, len2_byte);
           bcopy (temp, start1_addr + len2_byte, len1_byte);
 	  if (len1_byte > 20000)
-	    free (temp);
+	    xfree (temp);
         }
       graft_intervals_into_buffer (tmp_interval1, start1 + len2,
                                    len1, current_buffer, 0);
@@ -3643,7 +3643,7 @@
           bcopy (start2_addr, start1_addr, len2_byte);
           bcopy (temp, start2_addr, len1_byte);
 	  if (len1_byte > 20000)
-	    free (temp);
+	    xfree (temp);
           graft_intervals_into_buffer (tmp_interval1, start2,
                                        len1, current_buffer, 0);
           graft_intervals_into_buffer (tmp_interval2, start1,
@@ -3673,7 +3673,7 @@
           safe_bcopy (start1_addr + len1_byte, start1_addr + len2_byte, len_mid);
           bcopy (temp, start1_addr, len2_byte);
 	  if (len2_byte > 20000)
-	    free (temp);
+	    xfree (temp);
           graft_intervals_into_buffer (tmp_interval1, end2 - len1,
                                        len1, current_buffer, 0);
           graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
@@ -3705,7 +3705,7 @@
           bcopy (start1_addr + len1_byte, start1_addr + len2_byte, len_mid);
           bcopy (temp, start1_addr + len2_byte + len_mid, len1_byte);
 	  if (len1_byte > 20000)
-	    free (temp);
+	    xfree (temp);
           graft_intervals_into_buffer (tmp_interval1, end2 - len1,
                                        len1, current_buffer, 0);
           graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,