From 1c1774d8efaac814b1a37e60d776f5a47b533491 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Wed, 3 Feb 1999 16:40:32 +0000 Subject: Fix last change. --- src/w16select.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/w16select.c b/src/w16select.c index a5b188df19b..a6491a18dcc 100644 --- a/src/w16select.c +++ b/src/w16select.c @@ -475,7 +475,6 @@ DEFUN ("w16-set-clipboard-data", Fw16_set_clipboard_data, Sw16_set_clipboard_dat /* No multibyte character in OBJ. We need not encode it, but we will have to convert it to DOS CR-LF style. */ no_crlf_conversion = 0; - dst = src; } else { @@ -497,6 +496,7 @@ DEFUN ("w16-set-clipboard-data", Fw16_set_clipboard_data, Sw16_set_clipboard_dat encode_coding (&coding, src, dst, nbytes, bufsize); no_crlf_conversion = 1; nbytes = coding.produced; + src = dst; } if (!open_clipboard ()) @@ -504,7 +504,7 @@ DEFUN ("w16-set-clipboard-data", Fw16_set_clipboard_data, Sw16_set_clipboard_dat ok = empty_clipboard () && ((put_status - = set_clipboard_data (CF_OEMTEXT, dst, nbytes, no_crlf_conversion)) + = set_clipboard_data (CF_OEMTEXT, src, nbytes, no_crlf_conversion)) == 0); if (!no_crlf_conversion) -- cgit v1.2.1