diff options
| author | Eli Zaretskii | 2000-05-25 10:56:36 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-05-25 10:56:36 +0000 |
| commit | 1eed3a764fa85a2012d457d3603f6bf2b8c94bf1 (patch) | |
| tree | 37b16a8a688ae1cffbfe8287032794a382e49d5b /src/w16select.c | |
| parent | 10db7fc5e1d4210b5883a759d970f1438d66e397 (diff) | |
| download | emacs-1eed3a764fa85a2012d457d3603f6bf2b8c94bf1.tar.gz emacs-1eed3a764fa85a2012d457d3603f6bf2b8c94bf1.zip | |
(Fw16_set_clipboard_data): Fix the change from 2000-05-20.
Diffstat (limited to 'src/w16select.c')
| -rw-r--r-- | src/w16select.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w16select.c b/src/w16select.c index c662716807e..dec1af7726b 100644 --- a/src/w16select.c +++ b/src/w16select.c | |||
| @@ -526,8 +526,8 @@ DEFUN ("w16-set-clipboard-data", Fw16_set_clipboard_data, Sw16_set_clipboard_dat | |||
| 526 | Vnext_selection_coding_system = Vselection_coding_system; | 526 | Vnext_selection_coding_system = Vselection_coding_system; |
| 527 | setup_coding_system | 527 | setup_coding_system |
| 528 | (Fcheck_coding_system (Vnext_selection_coding_system), &coding); | 528 | (Fcheck_coding_system (Vnext_selection_coding_system), &coding); |
| 529 | coding->src_multibyte = 1; | 529 | coding.src_multibyte = 1; |
| 530 | coding->dst_multibyte = 0; | 530 | coding.dst_multibyte = 0; |
| 531 | Vnext_selection_coding_system = Qnil; | 531 | Vnext_selection_coding_system = Qnil; |
| 532 | coding.mode |= CODING_MODE_LAST_BLOCK; | 532 | coding.mode |= CODING_MODE_LAST_BLOCK; |
| 533 | Vlast_coding_system_used = coding.symbol; | 533 | Vlast_coding_system_used = coding.symbol; |