aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1997-07-02 12:53:50 +0000
committerKenichi Handa1997-07-02 12:53:50 +0000
commitb58fda2e9697324e53e281911ffac53005fed562 (patch)
tree86254f457b28a5f7e2d86210cd9e8b7cfb10ad84 /src
parent24127cf7ec323dbf642226ce75aea41df6280c27 (diff)
downloademacs-b58fda2e9697324e53e281911ffac53005fed562.tar.gz
emacs-b58fda2e9697324e53e281911ffac53005fed562.zip
(selection_data_to_lisp_data): Call free instead of
xfree.
Diffstat (limited to 'src')
-rw-r--r--src/xselect.c2
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)
1499 buf = (unsigned char *) xmalloc (bufsize); 1499 buf = (unsigned char *) xmalloc (bufsize);
1500 size = decode_coding (&coding, data, buf, size, bufsize, &dummy); 1500 size = decode_coding (&coding, data, buf, size, bufsize, &dummy);
1501 str = make_string ((char *) buf, size); 1501 str = make_string ((char *) buf, size);
1502 xfree (buf); 1502 free (buf);
1503 } 1503 }
1504 return str; 1504 return str;
1505 } 1505 }