diff options
author | Kenichi Handa <handa@m17n.org> | 1998-12-15 04:35:38 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1998-12-15 04:35:38 +0000 |
commit | 666273c2f0f1bd324346e808e382c6fd6237775f (patch) | |
tree | aa3fac60ddf87bcfb84f2fe97a0f3eb6f9cbb30d /src/xselect.c | |
parent | 096d416ffbd900829c8b1880ea89989e51d26691 (diff) | |
download | emacs-666273c2f0f1bd324346e808e382c6fd6237775f.tar.gz |
(lisp_data_to_selection_data): Call find_charset_in_str
with MULTIBYTE arg 0.
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 3861c1bc2c9..309e203c8bc 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -1637,7 +1637,7 @@ lisp_data_to_selection_data (display, obj, || !STRING_MULTIBYTE (obj) || *size_ret == XSTRING (obj)->size) ? 0 - : find_charset_in_str (*data_ret, *size_ret, charsets, Qnil, 0)); + : find_charset_in_str (*data_ret, *size_ret, charsets, Qnil, 0, 1)); if (!num || (num == 1 && charsets[CHARSET_ASCII])) { |