Mercurial > emacs
annotate src/w16select.c @ 29021:be2769eac1a5
(w32_to_x_font): Setup members src_multibyte and
dst_multibyte of coding.
(x_to_w32_font): Likewise.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Sat, 20 May 2000 00:06:41 +0000 |
parents | 041255b52348 |
children | b19b46eabcb5 |
rev | line source |
---|---|
21709
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
1 /* 16-bit Windows Selection processing for emacs on MS-Windows |
17451 | 2 Copyright (C) 1996, 1997 Free Software Foundation. |
3 | |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 2, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 Boston, MA 02111-1307, USA. */ | |
20 | |
21 /* These functions work by using WinOldAp interface. WinOldAp | |
22 (WINOLDAP.MOD) is a Microsoft Windows extension supporting | |
23 "old" (character-mode) application access to Dynamic Data Exchange, | |
24 menus, and the Windows clipboard. */ | |
25 | |
26 /* Written by Dale P. Smith <dpsm@en.com> */ | |
27 /* Adapted to DJGPP v1 by Eli Zaretskii <eliz@is.elta.co.il> */ | |
28 | |
29 #ifdef MSDOS | |
30 | |
31 #include <config.h> | |
32 #include <string.h> | |
33 #include <dpmi.h> | |
34 #include <go32.h> | |
35 #include <sys/farptr.h> | |
36 #include "lisp.h" | |
37 #include "dispextern.h" /* frame.h seems to want this */ | |
38 #include "frame.h" /* Need this to get the X window of selected_frame */ | |
39 #include "blockinput.h" | |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
40 #include "buffer.h" |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
41 #include "charset.h" |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
42 #include "coding.h" |
17451 | 43 |
44 /* If ever some function outside this file will need to call any | |
45 clipboard-related function, the following prototypes and constants | |
46 should be put on a header file. Right now, nobody else uses them. */ | |
47 | |
48 #define CF_TEXT 0x01 | |
49 #define CF_BITMAP 0x02 | |
50 #define CF_METAFILE 0x03 | |
51 #define CF_SYLK 0x04 | |
52 #define CF_DIF 0x05 | |
53 #define CF_TIFF 0x06 | |
54 #define CF_OEMTEXT 0x07 | |
55 #define CF_DIBBITMAP 0x08 | |
56 #define CF_WINWRITE 0x80 | |
57 #define CF_DSPTEXT 0x81 | |
58 #define CF_DSPBITMAP 0x82 | |
59 | |
60 unsigned identify_winoldap_version (void); | |
61 unsigned open_clipboard (void); | |
62 unsigned empty_clipboard (void); | |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
63 unsigned set_clipboard_data (unsigned, void *, unsigned, int); |
17451 | 64 unsigned get_clipboard_data_size (unsigned); |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
65 unsigned get_clipboard_data (unsigned, void *, unsigned, int); |
17451 | 66 unsigned close_clipboard (void); |
67 unsigned clipboard_compact (unsigned); | |
68 | |
69 Lisp_Object QCLIPBOARD, QPRIMARY; | |
70 | |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
71 /* Coding system for communicating with other Windows programs via the |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
72 clipboard. */ |
22904
37738fa8626a
(Fw16_set_clipboard_data, Fw16_get_clipboard_data, syms_of_win16select):
Eli Zaretskii <eliz@gnu.org>
parents:
22749
diff
changeset
|
73 static Lisp_Object Vselection_coding_system; |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
74 |
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
75 /* Coding system for the next communicating with other Windows programs. */ |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
76 static Lisp_Object Vnext_selection_coding_system; |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
77 |
17451 | 78 /* The segment address and the size of the buffer in low |
79 memory used to move data between us and WinOldAp module. */ | |
80 static struct { | |
81 unsigned long size; | |
82 unsigned short rm_segment; | |
83 } clipboard_xfer_buf_info; | |
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
84 |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
85 /* The last text we put into the clipboard. This is used to prevent |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
86 passing back our own text from the clipboard, instead of using the |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
87 kill ring. The former is undesirable because the clipboard data |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
88 could be MULEtilated by inappropriately chosen |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
89 (next-)selection-coding-system. For this reason, we must store the |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
90 text *after* it was encoded/Unix-to-DOS-converted. */ |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
91 static unsigned char *last_clipboard_text; |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
92 |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
93 /* The size of allocated storage for storing the clipboard data. */ |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
94 static size_t clipboard_storage_size; |
17451 | 95 |
96 /* Emulation of `__dpmi_int' and friends for DJGPP v1.x */ | |
97 | |
98 #if __DJGPP__ < 2 | |
99 | |
100 typedef _go32_dpmi_registers __dpmi_regs; | |
101 #define __tb _go32_info_block.linear_address_of_transfer_buffer | |
102 #define _dos_ds _go32_info_block.selector_for_linear_memory | |
103 | |
104 static int | |
105 __dpmi_int (intno, regs) | |
106 int intno; | |
107 __dpmi_regs *regs; | |
108 { | |
109 regs->x.ss = regs->x.sp = regs->x.flags = 0; | |
110 return _go32_dpmi_simulate_int (intno, regs); | |
111 } | |
112 | |
113 #endif /* __DJGPP__ < 2 */ | |
114 | |
115 /* C functions to access the Windows 3.1x clipboard from DOS apps. | |
116 | |
117 The information was obtained from the Microsoft Knowledge Base, | |
118 article Q67675 and can be found at: | |
119 http://www.microsoft.com/kb/developr/win_dk/q67675.htm */ | |
120 | |
121 /* See also Ralf Brown's Interrupt List. | |
122 | |
123 I also seem to remember reading about this in Dr. Dobbs Journal a | |
124 while ago, but if you knew my memory... :-) | |
125 | |
126 Dale P. Smith <dpsm@en.com> */ | |
127 | |
128 /* Return the WinOldAp support version, or 0x1700 if not supported. */ | |
129 unsigned | |
130 identify_winoldap_version () | |
131 { | |
132 __dpmi_regs regs; | |
133 | |
134 /* Calls Int 2Fh/AX=1700h | |
135 Return Values AX == 1700H: Clipboard functions not available | |
136 <> 1700H: AL = Major version number | |
137 AH = Minor version number */ | |
138 regs.x.ax = 0x1700; | |
139 __dpmi_int(0x2f, ®s); | |
140 return regs.x.ax; | |
141 } | |
142 | |
143 /* Open the clipboard, return non-zero if successfull. */ | |
144 unsigned | |
145 open_clipboard () | |
146 { | |
147 __dpmi_regs regs; | |
148 | |
149 /* Is WINOLDAP supported? */ | |
150 /* Kludge alert!! If WinOldAp is not supported, we return a 0, | |
151 which is the same as ``Clipboard already open''. Currently, | |
152 this is taken as an error by all the functions that use | |
153 `open_clipboard', but if somebody someday will use that ``open'' | |
154 clipboard, they will have interesting time debugging it... */ | |
155 if (identify_winoldap_version () == 0x1700) | |
156 return 0; | |
157 | |
158 /* Calls Int 2Fh/AX=1701h | |
159 Return Values AX == 0: Clipboard already open | |
160 <> 0: Clipboard opened */ | |
161 regs.x.ax = 0x1701; | |
162 __dpmi_int(0x2f, ®s); | |
163 return regs.x.ax; | |
164 } | |
165 | |
166 /* Empty clipboard, return non-zero if successfull. */ | |
167 unsigned | |
168 empty_clipboard () | |
169 { | |
170 __dpmi_regs regs; | |
171 | |
172 /* Calls Int 2Fh/AX=1702h | |
173 Return Values AX == 0: Error occurred | |
174 <> 0: OK, Clipboard emptied */ | |
175 regs.x.ax = 0x1702; | |
176 __dpmi_int(0x2f, ®s); | |
177 return regs.x.ax; | |
178 } | |
179 | |
180 /* Ensure we have a buffer in low memory with enough memory for data | |
181 of size WANT_SIZE. Return the linear address of the buffer. */ | |
182 static unsigned long | |
183 alloc_xfer_buf (want_size) | |
184 unsigned want_size; | |
185 { | |
186 __dpmi_regs regs; | |
187 | |
188 /* If the usual DJGPP transfer buffer is large enough, use that. */ | |
189 if (want_size <= _go32_info_block.size_of_transfer_buffer) | |
190 return __tb & 0xfffff; | |
191 | |
21709
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
192 /* Don't even try to allocate more than 1MB of memory: DOS cannot |
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
193 possibly handle that (it will overflow the BX register below). */ |
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
194 if (want_size > 0xfffff) |
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
195 return 0; |
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
196 |
17451 | 197 /* Need size rounded up to the nearest paragraph, and in |
198 paragraph units (1 paragraph = 16 bytes). */ | |
199 clipboard_xfer_buf_info.size = (want_size + 15) >> 4; | |
200 | |
201 /* The NT DPMI host crashes us if we free DOS memory via the | |
202 DPMI service. Work around by calling DOS allocate/free block. */ | |
203 regs.h.ah = 0x48; | |
204 regs.x.bx = clipboard_xfer_buf_info.size; | |
205 __dpmi_int (0x21, ®s); | |
206 if (regs.x.flags & 1) | |
207 { | |
208 clipboard_xfer_buf_info.size = 0; | |
209 return 0; | |
210 } | |
211 | |
212 clipboard_xfer_buf_info.rm_segment = regs.x.ax; | |
213 return (((int)clipboard_xfer_buf_info.rm_segment) << 4) & 0xfffff; | |
214 } | |
215 | |
216 /* Free our clipboard buffer. We always free it after use, because | |
217 keeping it leaves less free conventional memory for subprocesses. | |
218 The clipboard buffer tends to be large in size, because for small | |
219 clipboard data sizes we use the DJGPP transfer buffer. */ | |
220 static void | |
221 free_xfer_buf () | |
222 { | |
223 /* If the size is 0, we used DJGPP transfer buffer, so don't free. */ | |
224 if (clipboard_xfer_buf_info.size) | |
225 { | |
226 __dpmi_regs regs; | |
227 | |
228 /* The NT DPMI host crashes us if we free DOS memory via | |
229 the DPMI service. Work around by calling DOS free block. */ | |
230 regs.h.ah = 0x49; | |
231 regs.x.es = clipboard_xfer_buf_info.rm_segment; | |
232 __dpmi_int (0x21, ®s); | |
233 clipboard_xfer_buf_info.size = 0; | |
234 } | |
235 } | |
236 | |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
237 /* Copy data into the clipboard, return zero if successfull. */ |
17451 | 238 unsigned |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
239 set_clipboard_data (Format, Data, Size, Raw) |
17451 | 240 unsigned Format; |
241 void *Data; | |
242 unsigned Size; | |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
243 int Raw; |
17451 | 244 { |
245 __dpmi_regs regs; | |
246 unsigned truelen; | |
247 unsigned long xbuf_addr, buf_offset; | |
248 unsigned char *dp = Data, *dstart = dp; | |
249 | |
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
250 if (Format != CF_OEMTEXT) |
17451 | 251 return 0; |
252 | |
253 /* need to know final size after '\r' chars are inserted (the | |
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
254 standard CF_OEMTEXT clipboard format uses CRLF line endings, |
17451 | 255 while Emacs uses just LF internally). */ |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
256 truelen = Size + 1; /* +1 for the terminating null */ |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
257 |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
258 if (!Raw) |
17451 | 259 { |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
260 /* avoid using strchr because it recomputes the length everytime */ |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
261 while ((dp = memchr (dp, '\n', Size - (dp - dstart))) != 0) |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
262 { |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
263 truelen++; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
264 dp++; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
265 } |
17451 | 266 } |
267 | |
268 if (clipboard_compact (truelen) < truelen) | |
269 return 0; | |
270 | |
271 if ((xbuf_addr = alloc_xfer_buf (truelen)) == 0) | |
272 return 0; | |
273 | |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
274 /* Move the buffer into the low memory, convert LF into CR-LF if needed. */ |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
275 if (Raw) |
24251
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
276 { |
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
277 dosmemput (Data, Size, xbuf_addr); |
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
278 |
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
279 /* Terminate with a null, otherwise Windows does strange things |
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
280 when the text size is an integral multiple of 32 bytes. */ |
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
281 _farpokeb (_dos_ds, xbuf_addr + Size, '\0'); |
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
282 } |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
283 else |
17451 | 284 { |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
285 dp = Data; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
286 buf_offset = xbuf_addr; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
287 _farsetsel (_dos_ds); |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
288 while (Size--) |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
289 { |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
290 /* Don't allow them to put binary data into the clipboard, since |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
291 it will cause yanked data to be truncated at the first null. */ |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
292 if (*dp == '\0') |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
293 return 2; |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
294 if (*dp == '\n') |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
295 _farnspokeb (buf_offset++, '\r'); |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
296 _farnspokeb (buf_offset++, *dp++); |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
297 } |
24251
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
298 |
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
299 /* Terminate with a null, otherwise Windows does strange things |
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
300 when the text size is an integral multiple of 32 bytes. */ |
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
301 _farnspokeb (buf_offset, '\0'); |
17451 | 302 } |
303 | |
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
304 /* Stash away the data we are about to put into the clipboard, so we |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
305 could later check inside get_clipboard_data whether the clipboard |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
306 still holds our data. */ |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
307 if (clipboard_storage_size < truelen) |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
308 { |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
309 clipboard_storage_size = truelen + 100; |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
310 last_clipboard_text = |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
311 (char *) xrealloc (last_clipboard_text, clipboard_storage_size); |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
312 } |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
313 if (last_clipboard_text) |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
314 dosmemget (xbuf_addr, truelen, last_clipboard_text); |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
315 |
17451 | 316 /* Calls Int 2Fh/AX=1703h with: |
317 DX = WinOldAp-Supported Clipboard format | |
318 ES:BX = Pointer to data | |
319 SI:CX = Size of data in bytes | |
320 Return Values AX == 0: Error occurred | |
321 <> 0: OK. Data copied into the Clipboard. */ | |
322 regs.x.ax = 0x1703; | |
323 regs.x.dx = Format; | |
324 regs.x.si = truelen >> 16; | |
325 regs.x.cx = truelen & 0xffff; | |
326 regs.x.es = xbuf_addr >> 4; | |
327 regs.x.bx = xbuf_addr & 15; | |
328 __dpmi_int(0x2f, ®s); | |
329 | |
330 free_xfer_buf (); | |
331 | |
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
332 /* If the above failed, invalidate the local copy of the clipboard. */ |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
333 if (regs.x.ax == 0) |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
334 *last_clipboard_text = '\0'; |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
335 |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
336 /* Zero means success, otherwise (1 or 2) it's an error. */ |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
337 return regs.x.ax > 0 ? 0 : 1; |
17451 | 338 } |
339 | |
340 /* Return the size of the clipboard data of format FORMAT. */ | |
341 unsigned | |
342 get_clipboard_data_size (Format) | |
343 unsigned Format; | |
344 { | |
345 __dpmi_regs regs; | |
346 | |
347 /* Calls Int 2Fh/AX=1704h with: | |
348 DX = WinOldAp-Supported Clipboard format | |
349 Return Values DX:AX == Size of the data in bytes, including any | |
350 headers. | |
351 == 0 If data in this format is not in | |
352 the clipboard. */ | |
353 regs.x.ax = 0x1704; | |
354 regs.x.dx = Format; | |
355 __dpmi_int(0x2f, ®s); | |
356 return ( (((unsigned)regs.x.dx) << 16) | regs.x.ax); | |
357 } | |
358 | |
359 /* Get clipboard data, return its length. | |
360 Warning: this doesn't check whether DATA has enough space to hold | |
361 SIZE bytes. */ | |
362 unsigned | |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
363 get_clipboard_data (Format, Data, Size, Raw) |
17451 | 364 unsigned Format; |
365 void *Data; | |
366 unsigned Size; | |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
367 int Raw; |
17451 | 368 { |
369 __dpmi_regs regs; | |
370 unsigned long xbuf_addr; | |
371 unsigned char *dp = Data; | |
372 | |
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
373 if (Format != CF_OEMTEXT) |
17451 | 374 return 0; |
375 | |
376 if (Size == 0) | |
377 return 0; | |
378 | |
379 if ((xbuf_addr = alloc_xfer_buf (Size)) == 0) | |
380 return 0; | |
381 | |
382 /* Calls Int 2Fh/AX=1705h with: | |
383 DX = WinOldAp-Supported Clipboard format | |
384 ES:BX = Pointer to data buffer to hold data | |
385 Return Values AX == 0: Error occurred (or data in this format is not | |
386 in the clipboard) | |
387 <> 0: OK */ | |
388 regs.x.ax = 0x1705; | |
389 regs.x.dx = Format; | |
390 regs.x.es = xbuf_addr >> 4; | |
391 regs.x.bx = xbuf_addr & 15; | |
392 __dpmi_int(0x2f, ®s); | |
393 if (regs.x.ax != 0) | |
394 { | |
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
395 unsigned char null_char = '\0'; |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
396 unsigned long xbuf_beg = xbuf_addr; |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
397 |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
398 /* If last_clipboard_text is NULL, we don't want to slow down |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
399 the next loop by an additional test. */ |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
400 register unsigned char *lcdp = |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
401 last_clipboard_text == NULL ? &null_char : last_clipboard_text; |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
402 |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
403 /* Copy data from low memory, remove CR |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
404 characters before LF if needed. */ |
17451 | 405 _farsetsel (_dos_ds); |
406 while (Size--) | |
407 { | |
408 register unsigned char c = _farnspeekb (xbuf_addr++); | |
409 | |
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
410 if (*lcdp == c) |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
411 lcdp++; |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
412 |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
413 if ((*dp++ = c) == '\r' && !Raw && _farnspeekb (xbuf_addr) == '\n') |
17451 | 414 { |
415 dp--; | |
416 *dp++ = '\n'; | |
417 xbuf_addr++; | |
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
418 if (*lcdp == '\n') |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
419 lcdp++; |
17451 | 420 } |
421 /* Windows reportedly rounds up the size of clipboard data | |
24428
3d10131927a6
(get_clipboard_data): Always stop at the first null byte.
Eli Zaretskii <eliz@gnu.org>
parents:
24318
diff
changeset
|
422 (passed in SIZE) to a multiple of 32, and removes trailing |
3d10131927a6
(get_clipboard_data): Always stop at the first null byte.
Eli Zaretskii <eliz@gnu.org>
parents:
24318
diff
changeset
|
423 spaces from each line without updating SIZE. We therefore |
3d10131927a6
(get_clipboard_data): Always stop at the first null byte.
Eli Zaretskii <eliz@gnu.org>
parents:
24318
diff
changeset
|
424 bail out when we see the first null character. */ |
3d10131927a6
(get_clipboard_data): Always stop at the first null byte.
Eli Zaretskii <eliz@gnu.org>
parents:
24318
diff
changeset
|
425 else if (c == '\0') |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
426 break; |
17451 | 427 } |
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
428 |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
429 /* If the text in clipboard is identical to what we put there |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
430 last time set_clipboard_data was called, pretend there's no |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
431 data in the clipboard. This is so we don't pass our own text |
24428
3d10131927a6
(get_clipboard_data): Always stop at the first null byte.
Eli Zaretskii <eliz@gnu.org>
parents:
24318
diff
changeset
|
432 from the clipboard (which might be troublesome if the killed |
3d10131927a6
(get_clipboard_data): Always stop at the first null byte.
Eli Zaretskii <eliz@gnu.org>
parents:
24318
diff
changeset
|
433 text includes null characters). */ |
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
434 if (last_clipboard_text && |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
435 xbuf_addr - xbuf_beg == (long)(lcdp - last_clipboard_text)) |
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
436 dp = (unsigned char *)Data + 1; |
17451 | 437 } |
438 | |
439 free_xfer_buf (); | |
440 | |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
441 return (unsigned) (dp - (unsigned char *)Data - 1); |
17451 | 442 } |
443 | |
444 /* Close clipboard, return non-zero if successfull. */ | |
445 unsigned | |
446 close_clipboard () | |
447 { | |
448 __dpmi_regs regs; | |
449 | |
450 /* Calls Int 2Fh/AX=1708h | |
451 Return Values AX == 0: Error occurred | |
452 <> 0: OK */ | |
453 regs.x.ax = 0x1708; | |
454 __dpmi_int(0x2f, ®s); | |
455 return regs.x.ax; | |
456 } | |
457 | |
458 /* Compact clipboard data so that at least SIZE bytes is available. */ | |
459 unsigned | |
460 clipboard_compact (Size) | |
461 unsigned Size; | |
462 { | |
463 __dpmi_regs regs; | |
464 | |
465 /* Calls Int 2Fh/AX=1709H with: | |
466 SI:CX = Desired memory size in bytes. | |
467 Return Values DX:AX == Number of bytes of largest block of free memory. | |
468 == 0 if error or no memory */ | |
469 regs.x.ax = 0x1709; | |
470 regs.x.si = Size >> 16; | |
471 regs.x.cx = Size & 0xffff; | |
472 __dpmi_int(0x2f, ®s); | |
473 return ((unsigned)regs.x.dx << 16) | regs.x.ax; | |
474 } | |
475 | |
476 static char no_mem_msg[] = | |
477 "(Not enough DOS memory to put saved text into clipboard.)"; | |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
478 static char binary_msg[] = |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
479 "(Binary characters in saved text; clipboard data not set.)"; |
17451 | 480 |
21709
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
481 DEFUN ("w16-set-clipboard-data", Fw16_set_clipboard_data, Sw16_set_clipboard_data, 1, 2, 0, |
17451 | 482 "This sets the clipboard data to the given text.") |
483 (string, frame) | |
484 Lisp_Object string, frame; | |
485 { | |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
486 unsigned ok = 1, put_status = 0; |
17451 | 487 int nbytes; |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
488 unsigned char *src, *dst = NULL; |
29020
041255b52348
(Fw16_set_clipboard_data): Setup members
Kenichi Handa <handa@m17n.org>
parents:
24428
diff
changeset
|
489 int charset_info; |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
490 int no_crlf_conversion; |
17451 | 491 |
492 CHECK_STRING (string, 0); | |
493 | |
494 if (NILP (frame)) | |
495 frame = Fselected_frame (); | |
496 | |
497 CHECK_LIVE_FRAME (frame, 0); | |
498 if ( !FRAME_MSDOS_P (XFRAME (frame))) | |
499 goto done; | |
500 | |
501 BLOCK_INPUT; | |
502 | |
22904
37738fa8626a
(Fw16_set_clipboard_data, Fw16_get_clipboard_data, syms_of_win16select):
Eli Zaretskii <eliz@gnu.org>
parents:
22749
diff
changeset
|
503 nbytes = STRING_BYTES (XSTRING (string)); |
17451 | 504 src = XSTRING (string)->data; |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
505 |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
506 /* Since we are now handling multilingual text, we must consider |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
507 encoding text for the clipboard. */ |
29020
041255b52348
(Fw16_set_clipboard_data): Setup members
Kenichi Handa <handa@m17n.org>
parents:
24428
diff
changeset
|
508 charset_info = find_charset_in_text (src, XSTRING (string)->size, nbytes, |
041255b52348
(Fw16_set_clipboard_data): Setup members
Kenichi Handa <handa@m17n.org>
parents:
24428
diff
changeset
|
509 NULL, Qnil); |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
510 |
29020
041255b52348
(Fw16_set_clipboard_data): Setup members
Kenichi Handa <handa@m17n.org>
parents:
24428
diff
changeset
|
511 if (charset_info == 0) |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
512 { |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
513 /* No multibyte character in OBJ. We need not encode it, but we |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
514 will have to convert it to DOS CR-LF style. */ |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
515 no_crlf_conversion = 0; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
516 } |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
517 else |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
518 { |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
519 /* We must encode contents of STRING according to what |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
520 clipboard-coding-system specifies. */ |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
521 int bufsize; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
522 struct coding_system coding; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
523 unsigned char *htext2; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
524 |
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
525 if (NILP (Vnext_selection_coding_system)) |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
526 Vnext_selection_coding_system = Vselection_coding_system; |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
527 setup_coding_system |
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
528 (Fcheck_coding_system (Vnext_selection_coding_system), &coding); |
29020
041255b52348
(Fw16_set_clipboard_data): Setup members
Kenichi Handa <handa@m17n.org>
parents:
24428
diff
changeset
|
529 coding->src_multibyte = 1; |
041255b52348
(Fw16_set_clipboard_data): Setup members
Kenichi Handa <handa@m17n.org>
parents:
24428
diff
changeset
|
530 coding->dst_multibyte = 0; |
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
531 Vnext_selection_coding_system = Qnil; |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
532 coding.mode |= CODING_MODE_LAST_BLOCK; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
533 Vlast_coding_system_used = coding.symbol; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
534 bufsize = encoding_buffer_size (&coding, nbytes); |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
535 dst = (unsigned char *) xmalloc (bufsize); |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
536 encode_coding (&coding, src, dst, nbytes, bufsize); |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
537 no_crlf_conversion = 1; |
24257
7507c0552393
(Fw16_set_clipboard_data): When the text needs to be
Eli Zaretskii <eliz@gnu.org>
parents:
24251
diff
changeset
|
538 nbytes = coding.produced; |
24258 | 539 src = dst; |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
540 } |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
541 |
17451 | 542 if (!open_clipboard ()) |
543 goto error; | |
544 | |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
545 ok = empty_clipboard () |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
546 && ((put_status |
24258 | 547 = set_clipboard_data (CF_OEMTEXT, src, nbytes, no_crlf_conversion)) |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
548 == 0); |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
549 |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
550 if (!no_crlf_conversion) |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
551 Vlast_coding_system_used = Qraw_text; |
17451 | 552 close_clipboard (); |
553 | |
21707
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
554 if (ok) goto unblock; |
17451 | 555 |
556 error: | |
557 | |
558 ok = 0; | |
559 | |
21707
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
560 unblock: |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
561 if (dst) |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
562 xfree (dst); |
21707
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
563 UNBLOCK_INPUT; |
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
564 |
17451 | 565 /* Notify user if the text is too large to fit into DOS memory. |
566 (This will happen somewhere after 600K bytes (470K in DJGPP v1.x), | |
567 depending on user system configuration.) If we just silently | |
568 fail the function, people might wonder why their text sometimes | |
569 doesn't make it to the clipboard. */ | |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
570 if (put_status) |
17451 | 571 { |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
572 switch (put_status) |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
573 { |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
574 case 1: |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
575 message2 (no_mem_msg, sizeof (no_mem_msg) - 1, 0); |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
576 break; |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
577 case 2: |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
578 message2 (binary_msg, sizeof (binary_msg) - 1, 0); |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
579 break; |
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
580 } |
17960
5c31b98be973
(Fwin16_set_clipboard_data): Pass new arg to sit_for.
Richard M. Stallman <rms@gnu.org>
parents:
17451
diff
changeset
|
581 sit_for (2, 0, 0, 1, 1); |
17451 | 582 } |
583 | |
584 done: | |
585 | |
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
586 return (ok && put_status == 0 ? string : Qnil); |
17451 | 587 } |
588 | |
21709
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
589 DEFUN ("w16-get-clipboard-data", Fw16_get_clipboard_data, Sw16_get_clipboard_data, 0, 1, 0, |
17451 | 590 "This gets the clipboard data in text format.") |
591 (frame) | |
592 Lisp_Object frame; | |
593 { | |
594 unsigned data_size, truelen; | |
595 unsigned char *htext; | |
596 Lisp_Object ret = Qnil; | |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
597 int no_crlf_conversion; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
598 int require_encoding = 0; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
599 |
17451 | 600 if (NILP (frame)) |
601 frame = Fselected_frame (); | |
602 | |
603 CHECK_LIVE_FRAME (frame, 0); | |
604 if ( !FRAME_MSDOS_P (XFRAME (frame))) | |
605 goto done; | |
606 | |
607 BLOCK_INPUT; | |
608 | |
609 if (!open_clipboard ()) | |
21707
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
610 goto unblock; |
17451 | 611 |
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
612 if ((data_size = get_clipboard_data_size (CF_OEMTEXT)) == 0 || |
17451 | 613 (htext = (unsigned char *)xmalloc (data_size)) == 0) |
614 goto closeclip; | |
615 | |
616 /* need to know final size after '\r' chars are removed because | |
617 we can't change the string size manually, and doing an extra | |
618 copy is silly */ | |
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
619 if ((truelen = get_clipboard_data (CF_OEMTEXT, htext, data_size, 0)) == 0) |
17451 | 620 goto closeclip; |
621 | |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
622 /* Do we need to decode it? */ |
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
623 if ( |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
624 #if 1 |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
625 1 |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
626 #else |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
627 ! NILP (buffer_defaults.enable_multibyte_characters) |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
628 #endif |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
629 ) |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
630 { |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
631 /* If the clipboard data contains any 8-bit Latin-1 code, we |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
632 need to decode it. */ |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
633 int i; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
634 |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
635 for (i = 0; i < truelen; i++) |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
636 { |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
637 if (htext[i] >= 0x80) |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
638 { |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
639 require_encoding = 1; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
640 break; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
641 } |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
642 } |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
643 } |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
644 if (require_encoding) |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
645 { |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
646 int bufsize; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
647 unsigned char *buf; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
648 struct coding_system coding; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
649 |
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
650 if (NILP (Vnext_selection_coding_system)) |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
651 Vnext_selection_coding_system = Vselection_coding_system; |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
652 setup_coding_system |
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
653 (Fcheck_coding_system (Vnext_selection_coding_system), &coding); |
29020
041255b52348
(Fw16_set_clipboard_data): Setup members
Kenichi Handa <handa@m17n.org>
parents:
24428
diff
changeset
|
654 coding.src_multibyte = 0; |
041255b52348
(Fw16_set_clipboard_data): Setup members
Kenichi Handa <handa@m17n.org>
parents:
24428
diff
changeset
|
655 coding.dst_multibyte = 1; |
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
656 Vnext_selection_coding_system = Qnil; |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
657 coding.mode |= CODING_MODE_LAST_BLOCK; |
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
658 truelen = get_clipboard_data (CF_OEMTEXT, htext, data_size, 1); |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
659 bufsize = decoding_buffer_size (&coding, truelen); |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
660 buf = (unsigned char *) xmalloc (bufsize); |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
661 decode_coding (&coding, htext, buf, truelen, bufsize); |
29020
041255b52348
(Fw16_set_clipboard_data): Setup members
Kenichi Handa <handa@m17n.org>
parents:
24428
diff
changeset
|
662 ret = make_string_from_bytes ((char *) buf, |
041255b52348
(Fw16_set_clipboard_data): Setup members
Kenichi Handa <handa@m17n.org>
parents:
24428
diff
changeset
|
663 coding.produced_char, coding.produced); |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
664 xfree (buf); |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
665 Vlast_coding_system_used = coding.symbol; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
666 } |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
667 else |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
668 { |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
669 ret = make_unibyte_string ((char *) htext, truelen); |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
670 Vlast_coding_system_used = Qraw_text; |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
671 } |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
672 |
17451 | 673 xfree (htext); |
674 | |
675 closeclip: | |
676 close_clipboard (); | |
21707
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
677 |
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
678 unblock: |
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
679 UNBLOCK_INPUT; |
17451 | 680 |
681 done: | |
682 | |
683 return (ret); | |
684 } | |
685 | |
686 /* Support checking for a clipboard selection. */ | |
687 | |
688 DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p, | |
689 0, 1, 0, | |
690 "Whether there is an owner for the given X Selection.\n\ | |
691 The arg should be the name of the selection in question, typically one of\n\ | |
692 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ | |
693 \(Those are literal upper-case symbol names, since that's what X expects.)\n\ | |
694 For convenience, the symbol nil is the same as `PRIMARY',\n\ | |
695 and t is the same as `SECONDARY'.") | |
696 (selection) | |
697 Lisp_Object selection; | |
698 { | |
699 CHECK_SYMBOL (selection, 0); | |
700 | |
701 /* Return nil for SECONDARY selection. For PRIMARY (or nil) | |
702 selection, check if there is some text on the kill-ring; | |
703 for CLIPBOARD, check if the clipboard currently has valid | |
704 text format contents. | |
705 | |
706 The test for killed text on the kill-ring emulates the Emacs | |
707 behavior on X, where killed text is also put into X selection | |
708 by the X interface code. (On MSDOS, killed text is only put | |
709 into the clipboard if we run under Windows, so we cannot check | |
710 the clipboard alone.) */ | |
711 if ((EQ (selection, Qnil) || EQ (selection, QPRIMARY)) | |
712 && ! NILP (XSYMBOL (Fintern_soft (build_string ("kill-ring"), | |
713 Qnil))->value)) | |
714 return Qt; | |
715 | |
716 if (EQ (selection, QCLIPBOARD)) | |
717 { | |
718 Lisp_Object val = Qnil; | |
719 | |
720 if (open_clipboard ()) | |
721 { | |
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
722 if (get_clipboard_data_size (CF_OEMTEXT)) |
17451 | 723 val = Qt; |
724 close_clipboard (); | |
725 } | |
726 return val; | |
727 } | |
728 return Qnil; | |
729 } | |
730 | |
731 void | |
732 syms_of_win16select () | |
733 { | |
21709
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
734 defsubr (&Sw16_set_clipboard_data); |
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
735 defsubr (&Sw16_get_clipboard_data); |
17451 | 736 defsubr (&Sx_selection_exists_p); |
737 | |
22904
37738fa8626a
(Fw16_set_clipboard_data, Fw16_get_clipboard_data, syms_of_win16select):
Eli Zaretskii <eliz@gnu.org>
parents:
22749
diff
changeset
|
738 DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system, |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
739 "Coding system for communicating with other X clients.\n\ |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
740 When sending or receiving text via cut_buffer, selection, and clipboard,\n\ |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
741 the text is encoded or decoded by this coding system.\n\ |
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
742 A default value is `iso-latin-1-dos'"); |
22904
37738fa8626a
(Fw16_set_clipboard_data, Fw16_get_clipboard_data, syms_of_win16select):
Eli Zaretskii <eliz@gnu.org>
parents:
22749
diff
changeset
|
743 Vselection_coding_system=intern ("iso-latin-1-dos"); |
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
744 |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
745 DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system, |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
746 "Coding system for the next communication with other X clients.\n\ |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
747 Usually, `selection-coding-system' is used for communicating with\n\ |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
748 other X clients. But, if this variable is set, it is used for the\n\ |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
749 next communication only. After the communication, this variable is\n\ |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
750 set to nil."); |
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
751 Vnext_selection_coding_system = Qnil; |
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
752 |
17451 | 753 QPRIMARY = intern ("PRIMARY"); staticpro (&QPRIMARY); |
754 QCLIPBOARD = intern ("CLIPBOARD"); staticpro (&QCLIPBOARD); | |
755 } | |
756 | |
757 #endif /* MSDOS */ |