]> git.eshelyaron.com Git - emacs.git/commitdiff
(selection_data_to_lisp_data): Call free instead of
authorKenichi Handa <handa@m17n.org>
Wed, 2 Jul 1997 12:53:50 +0000 (12:53 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 2 Jul 1997 12:53:50 +0000 (12:53 +0000)
xfree.

src/xselect.c

index 2b5cec026557dfd9165b8d78e79c3e9cf6c76ca4..81896816b1a6420aeacbf56973168b3f45a4d48c 100644 (file)
@@ -1499,7 +1499,7 @@ selection_data_to_lisp_data (display, data, size, type, format)
          buf = (unsigned char *) xmalloc (bufsize);
          size = decode_coding (&coding, data, buf, size, bufsize, &dummy);
          str = make_string ((char *) buf, size);
-         xfree (buf);
+         free (buf);
        }
       return str;
     }