aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1998-10-12 12:00:44 +0000
committerKenichi Handa1998-10-12 12:00:44 +0000
commit3c8cb3123a6fc54968fd368c0ce15d2d16826126 (patch)
tree83fa2d492801f7a7e541a2f6ca98d1d80f75a9a5 /src
parent6b123f323b9ee2274ebfc8e33168d542949605dd (diff)
downloademacs-3c8cb3123a6fc54968fd368c0ce15d2d16826126.tar.gz
emacs-3c8cb3123a6fc54968fd368c0ce15d2d16826126.zip
(Fw32_set_clipboard_data): Call find_charset_in_str with CMPCHARP arg 0.
Diffstat (limited to 'src')
-rw-r--r--src/w32select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32select.c b/src/w32select.c
index 77d9af3fa6b..5191b2a2ed2 100644
--- a/src/w32select.c
+++ b/src/w32select.c
@@ -120,7 +120,7 @@ DEFUN ("w32-set-clipboard-data", Fw32_set_clipboard_data, Sw32_set_clipboard_dat
120 num = ((nbytes <= 2 /* Check the possibility of short cut. */ 120 num = ((nbytes <= 2 /* Check the possibility of short cut. */
121 || NILP (buffer_defaults.enable_multibyte_characters)) 121 || NILP (buffer_defaults.enable_multibyte_characters))
122 ? 0 122 ? 0
123 : find_charset_in_str (src, nbytes, charsets, Qnil, 1)); 123 : find_charset_in_str (src, nbytes, charsets, Qnil, 0));
124 124
125 if (!num || (num == 1 && charsets[CHARSET_ASCII])) 125 if (!num || (num == 1 && charsets[CHARSET_ASCII]))
126 { 126 {