diff options
author | Kenichi Handa <handa@m17n.org> | 1997-07-02 12:53:50 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-07-02 12:53:50 +0000 |
commit | b58fda2e9697324e53e281911ffac53005fed562 (patch) | |
tree | 86254f457b28a5f7e2d86210cd9e8b7cfb10ad84 /src/xselect.c | |
parent | 24127cf7ec323dbf642226ce75aea41df6280c27 (diff) | |
download | emacs-b58fda2e9697324e53e281911ffac53005fed562.tar.gz |
(selection_data_to_lisp_data): Call free instead of
xfree.
Diffstat (limited to 'src/xselect.c')
-rw-r--r-- | src/xselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xselect.c b/src/xselect.c index 2b5cec02655..81896816b1a 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -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; } |