Mercurial > emacs
changeset 18534:cf074bab6a2d
(selection_data_to_lisp_data): Call free instead of
xfree.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 02 Jul 1997 12:53:50 +0000 |
parents | d9160fd77816 |
children | 7ca42974dad4 |
files | src/xselect.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xselect.c Wed Jul 02 06:45:51 1997 +0000 +++ b/src/xselect.c Wed Jul 02 12:53:50 1997 +0000 @@ -1499,7 +1499,7 @@ 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; }