Mercurial > emacs
changeset 59067:fdadde62c624
(Fx_get_cut_buffer_internal): Return a unibyte string.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 22 Dec 2004 06:32:30 +0000 |
parents | c979627ce50b |
children | 9793bbaae7d3 |
files | src/xselect.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xselect.c Wed Dec 22 05:44:13 2004 +0000 +++ b/src/xselect.c Wed Dec 22 06:32:30 2004 +0000 @@ -2324,7 +2324,7 @@ Fcons (x_atom_to_symbol (display, type), Fcons (make_number (format), Qnil)))); - ret = (bytes ? make_string ((char *) data, bytes) : Qnil); + ret = (bytes ? make_unibyte_string ((char *) data, bytes) : Qnil); /* Use xfree, not XFree, because x_get_window_property calls xmalloc itself. */ xfree (data);